Skip to main content

Get All PAY IN Offered Currencies

This API will fetch the currencies you can PAY IN for the given clientId.

Definition

URL
GET https://api-test.instarem.com:4803/api/v1/client/{clientId}/receiveOfferedCurrencies

Header Parameters:

ParameterDescriptionTypeRequired
authorizationAuthentication token.StringYes
content-typeThe Content-Type entity header is used to indicate the media type of the resource. Expected values could be application/json or multipart/form-data.StringYes

Path Parameters:

ParameterDescriptionTypeRequired
clientIdThis is the unique client ID generated by Nium.StringYes

Example Request:

curl --request get \\
--url "https://api-test.instarem.com:4803/api/v1/client/{clientId}/receiveOfferedCurrencies" \\
--header 'authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE0OTgxMzQ4OTQsImRhdGEiOnsic3ViIjoiNTk0MjNmMzZjZWEyMTQ2OTI2ODczOWE1IiwiY2xpZW50IjoiNTk0MjNmMzZjZWEyMTQ2OTI2ODczOWExIn0sImlhdCI6MTQ5ODA0ODQ5NH0.pevwSDpk-JDNtVIpqFu_m0Xu1UnDVumrAYStcrxf8sM' \\
--header 'content-type: application/json'

Response (200):

[
{
"currencyCode": "USD",
"label": "LOCAL"
},
{
"currencyCode": "USD",
"label": "GLOBAL"
},
{
"currencyCode": "SGD",
"label": "LOCAL"
},
{
"currencyCode": "AUD",
"label": "LOCAL"
},
{
"currencyCode": "HKD",
"label": "LOCAL"
},
{
"currencyCode": "INR",
"label": "LOCAL"
},
{
"currencyCode": "EUR",
"label": "LOCAL"
},
{
"currencyCode": "GBP",
"label": "LOCAL"
}
]

Response Parameters:

ParameterDescriptionType
currencyCodeCurrency Code of the receiving accountString
labelThe type of virtual receiving account. The value could be LOCAL, GLOBAL, or LOCAL,GLOBALString