Get Supported Currency Lookup

get

/rest/v16/pricingSetup/lookups/currencies/{lookupId}

Use this enpoint to retrive the specified supported currency lookup.

Request

Path Parameters
Query Parameters
  • This parameter filters the resource attributes. Only the specified attributes are returned, which means that if no attributes are specified, all attributes are returned.
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : CurrencyLookup
Type: object
Show Source
Nested Schema : Created By
Title: Created By
Read Only: true
The details of the user who created the record.
Match All
Show Source
Nested Schema : Last Modified By
Title: Last Modified By
Read Only: true
The details of the user who modified the record.
Match All
Show Source
Nested Schema : UserDetails
Type: object
Show Source
Back to Top

Examples

The following examples show how to retrieve a supported currency using the specified lookup Id by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl - X GET - i - H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" - H "Content-type: application/json"
https://sitename.oracle.com/rest/v16/pricingSetup/lookups/currencies/5190371

Response Body Sample

{
  "storedPrecision": 2,
  "links": [{
      "rel": "self",
      "href": "https://sitename.oracle.com/rest/v16/pricingSetup/lookups/currencies/5190371"
    }, {
      "rel": "parent",
      "href": "https://sitename.oracle.com/rest/v16/pricingSetup/lookups/currencies"
    }
  ],
  "id": "5190371",
  "lookupCode": "GBP",
  "meaning": "United Kingdom Pound",
  "description": "United Kingdom"
}
Back to Top