Look up a UMA address for payment
Lookup a receiving UMA address to determine supported currencies and exchange rates. This endpoint helps platforms determine what currencies they can send to a given UMA address.
Path parameters
UMA address of the intended recipient
Query parameters
UMA address of the sender (optional if userId is provided)
System ID of the sender (optional if senderUmaAddress is provided)
Response
Successful lookup
Example response
{
"receiverUmaAddress": "$receiver@uma.domain",
"supportedCurrencies": [
{
"currency": {
"code": "USD",
"name": "United States Dollar",
"symbol": "$",
"decimals": 2
},
"estimatedExchangeRate": 1.08,
"min": 1,
"max": 1000000
}
],
"requiredPayerDataFields": [
{
"name": "FULL_NAME",
"mandatory": true
}
],
"lookupId": "Lookup:019542f5-b3e7-1d02-0000-000000000009",
"kycStatus": "VERIFIED",
"bankAccountNameMatchingStatus": "MATCHED"
}Changes
Changed in 4 of the 13 revisions of this API.33
- ●
added the new
BUSINESS_TYPEenum value to therequiredPayerDataFields/items/nameresponse property for the response status200response-property-enum-value-added
- ●
- ○
added the optional property
bankAccountNameMatchingStatusto the response with the200statusresponse-optional-property-added
- ○
added the required property
kycStatusto the response with the200statusresponse-required-property-added
- ○
- ●
added the new
IDENTIFIERenum value to therequiredPayerDataFields/items/nameresponse property for the response status200response-property-enum-value-added
- ●
- ●
added the new
POSTAL_ADDRESSenum value to therequiredPayerDataFields/items/nameresponse property for the response status200response-property-enum-value-added
- ○
removed the
ADDRESSenum value from therequiredPayerDataFields/items/nameresponse property for the response status200response-property-enum-value-removed
- ●
Of the 13 revisions, 1 has no diff computed.