Retrieve an individual
GET/individuals/:individual_id
Retrieve an individual
Request
Path Parameters
Responses
- 200
- 401
- 403
- 404
- 500
Individual retrieved
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [success]
data
object
The individual account id.
The partner account that created this individual.
Individual's given name.
Individual's family name.
Individual's email address.
Contact phone number (digits only), or null if not provided.
4-digit year of birth, or null if not provided.
Month of birth (1-12), or null.
Day of birth (1-31), or null.
ISO 3166-1 alpha-2 country code, or null.
Street address line 1, or null.
Street address line 2, or null.
Postal / ZIP code, or null.
City, or null.
State / province / region, or null.
Government identifier value, or null if not provided.
Possible values: [pending, active, inactive, rejected]
active only after KYX approval.
Unix timestamp (seconds).
Possible values: [200]
Possible values: [Successful request]
{
"status": "success",
"data": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"onboarded_by_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"first_name": "string",
"last_name": "string",
"email": "user@example.com",
"phone_number": "string",
"birthdate_year": 0,
"birthdate_month": 0,
"birthdate_day": 0,
"address_country": "string",
"address_line1": "string",
"address_line2": "string",
"address_zip": "string",
"address_city": "string",
"address_state": "string",
"government_id": "string",
"status": "pending",
"created_on": 0
},
"code": 200,
"message": "Successful request"
}
Access token is missing or invalid
Access denied
Individual not found
Server error