Step 4 - Retrieve Identity Details
Overview
After successful completion of the Identity job, you will be able to retrieve the most up-to-date information on the end user's identity.
Retrieve Identity Details
HTTP Request
Sandbox - GET https://api.sandbox.aerosync.com/v2/accounts/{{userId}}/identity
Staging - GET https://api.staging.aerosync.com/v2/accounts/{{userId}}/identity
Production - GET https://api.aerosync.com/v2/accounts/{{userId}}/identity
Request Parameters
Parameter | Required? | Type | Description |
---|---|---|---|
user_id | Yes | String | A user's account unique identifier |
Request and Response
GET https://api.sandbox.aerosync.com/v2/accounts/{{userId}}/identity
Authorization: Bearer {{token}}
{
"status": "success",
"statusCode": 200,
"identity": {
"accountHolderName": "John Doe",
"address": "An Address",
"email": "[email protected]",
"phone": "515-123-4567",
"userId": "eda89d7076484cd8a30644b20d465af1"
}
}
Updated about 1 month ago