Users API
Get user
API Documentation
API List
- Address API
- Bank accounts API
- Bank payments API
- Bank payouts API
- Crypto payments API
- Onboarding API
- Orders API
- Quotes API
- Users API
- Webhooks API
Users API
Get user
GET
/
api
/
users
/
{id}
curl --request GET \
--url https://app.sandbox.rio.trade/api/users/{id} \
--header 'x-api-key: <api-key>'
{
"invoicing": {
"MX": {}
},
"individualData": {
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"birthday": "1988-06-06T00:00:00.000Z"
},
"businessData": {
"businessName": "<string>"
},
"createdAt": "2024-05-28T19:08:48.590Z",
"type": "business",
"phoneNumber": "+526589562354",
"email": "testing@riotransfer.co",
"onboarding": {
"MX": {
"status": "approved",
"onboardingId": "66562ae87f5e01543da3b784",
"aiPriseId": "1c1bba7c-59e7-4e00-956e-0803ad6e259d",
"address": {
"street1": "Address 1",
"street2": "Address 2",
"city": "City",
"state": "State",
"country": "Country",
"postalCode": "Postal Code"
},
"hasAcceptedTerms": true
}
},
"id": "66562bc04fe8bf83c577c178"
}
Authorizations
Path Parameters
Id of the user to be obtained.
Response
200 - application/json
OK
Creation date of the user.
Example:
"2024-05-28T19:08:48.590Z"
Type of the user.
Available options:
business
, individual
Phone number of the user.
Example:
"+526589562354"
Email of the user.
Example:
"testing@riotransfer.co"
Onboarding status for Mexico.
Available options:
approved
, individualPassed
, individualReview
, individualFailed
, legalRepresentativeApproved
, legalRepresentativeFailed
, bridgeToSAndKYCCompleted
, bridgeKYCCompleted
, bridgeKYCApproved
, bridgeToSCompleted
, started
, failed
, review
, none
Onboarding ID for Mexico.
Example:
"66562ae87f5e01543da3b784"
AI Prise ID for Mexico.
Example:
"1c1bba7c-59e7-4e00-956e-0803ad6e259d"
Street 1 of the user's address.
Example:
"Address 1"
Street 2 of the user's address.
Example:
"Address 2"
City of the user's address.
Example:
"City"
State of the user's address.
Example:
"State"
Country of the user's address.
Example:
"Country"
Postal code of the user's address.
Example:
"Postal Code"
Indicates if the user has accepted the terms and conditions.
Example:
true
ID of the user.
Example:
"66562bc04fe8bf83c577c178"
curl --request GET \
--url https://app.sandbox.rio.trade/api/users/{id} \
--header 'x-api-key: <api-key>'
{
"invoicing": {
"MX": {}
},
"individualData": {
"firstName": "<string>",
"middleName": "<string>",
"lastName": "<string>",
"birthday": "1988-06-06T00:00:00.000Z"
},
"businessData": {
"businessName": "<string>"
},
"createdAt": "2024-05-28T19:08:48.590Z",
"type": "business",
"phoneNumber": "+526589562354",
"email": "testing@riotransfer.co",
"onboarding": {
"MX": {
"status": "approved",
"onboardingId": "66562ae87f5e01543da3b784",
"aiPriseId": "1c1bba7c-59e7-4e00-956e-0803ad6e259d",
"address": {
"street1": "Address 1",
"street2": "Address 2",
"city": "City",
"state": "State",
"country": "Country",
"postalCode": "Postal Code"
},
"hasAcceptedTerms": true
}
},
"id": "66562bc04fe8bf83c577c178"
}