Get Customer
GET/customers/:CustomerID
Retrieve details of a specific customer by their CustomerID.
Request
Path Parameters
Possible values: non-empty
and <= 36 characters
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
- DrivingLicense
- NationalIDCard
- Passport
- AddressProof
- ResidencePermit
- TaxID
]
A unique ID which identifies the customer in the Business' internal system and in NOAH.
Possible values: non-empty
and <= 36 characters
550e8400-e29b-41d4-a716-446655440000
2024-04-16T08:00:55Z
Possible values: >= 10 characters
and <= 10 characters
2024-04-16
FullNameobjectrequired
user's first name
Possible values: non-empty
and <= 50 characters
user's last name (family name)
Possible values: non-empty
and <= 50 characters
user's middle name
Possible values: non-empty
and <= 50 characters
Identitiesobject[]required
ISO 3166-1 alpha-2 country code.
US
Possible values: non-empty
and <= 36 characters
Possible values: >= 10 characters
and <= 10 characters
2024-04-16
Possible values: >= 10 characters
and <= 10 characters
2024-04-16
Type of identification document:
Passport
PrimaryResidence
objectrequired
Street: the primary name of an address's street.
Possible values: >= 2 characters
and <= 200 characters
Street2: the secondary name of an address's street.
City: name of an address's city or town.
Possible values: non-empty
and <= 100 characters
PostCode: the address's postcode
Possible values: non-empty
and <= 20 characters
State: the address's state / province / county. For USA and Canada, state code in ISO 3166-2 code (e.g. CA) is required.
Possible values: non-empty
and <= 100 characters
ISO 3166-1 alpha-2 country code.
US
{
"CustomerID": "550e8400-e29b-41d4-a716-446655440000",
"Created": "2024-04-16T08:00:55Z",
"DateOfBirth": "2024-04-16",
"FullName": {
"FirstName": "string",
"LastName": "string",
"MiddleName": "string"
},
"Identities": [
{
"IssuingCountry": "US",
"IDNumber": "string",
"IssuedDate": "2024-04-16",
"ExpiryDate": "2024-04-16",
"IDType": "Passport"
}
],
"PrimaryResidence": {
"Street": "string",
"Street2": "string",
"City": "string",
"PostCode": "string",
"State": "string",
"Country": "US"
}
}