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

Staging - GET https://api.staging.aerosync.com/v2/accounts/{{userId}}/identity

Production - GET https://api.aerosync.com/v2/accounts/{{userId}}/identity

Request Parameters

ParameterRequired?TypeDescription
idYesStringA user's account unique identifier

Request and Response

GET https://api.staging.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"
    }
}