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/{D}/identity

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

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

Request Parameters

ParameterRequired?TypeDescription
user_idYesStringA user's account unique identifier

Request and Response

GET https://api.sandbox.aerosync.com/v2/accounts/{D}/identity Authorization: Bearer {{token}} { "status": "success", "statusCode": 200, "identity": { "accountHolderName": "John Doe", "address": "300 Walnut St #906, Des Moines, IA, 50309", "address_fields": { "address1": "300 Walnut St", "address2": "906", "city": "Des Moines", "state": "IA", "region": null, "postalCode": "50309”, "country": "US" }, "email": "johnDoe@anemail.com", "phone": "515-123-4567", "userId": "eda89d7076484cd8a30644b20d465af1" } }

Did this page help you?