| Field | Type | Description | Constraints |
|---|---|---|---|
firstName | string | - | Max: 100 · Nullable |
middleName | string | - | Max: 100 · Nullable |
lastName | string | - | Max: 100 · Nullable |
email | string (email) | - | Nullable |
phoneCode | string | - | Nullable |
phoneNumber | string | - | Nullable |
country | string | - | Min: 2 · Max: 2 · Nullable |
state | string | - | Nullable |
dateOfBirth | string (date) | - | Nullable |
gender | string | - | Nullable |
address | object | addressLine1, addressLine2, city, state, postalCode, country | - |
business | object | businessName, registrationNumber, taxId, incorporationDate, website, industry, companyType | - |
curl --location -g --request PATCH '/{{baseurl}}/api/v1/Customers/' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "Janet",
"phoneNumber": "7700999888",
"address": {
"addressLine1": "10 Downing Street",
"city": "London",
"postalCode": "SW1A 2AA",
"country": "GB"
}
}'