Authorization: Bearer ********************
{
"name": "NameToPatch",
"address": {
"city": "Sacramento",
"country": "US",
"county": null,
"state": "CA",
"street": "10010 Patched St.",
"zip": "95823"
}
}
curl --location -g --request PATCH 'https://sandbox.complyt.io/v1/customers/complytId/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "NameToPatch",
"address": {
"city": "Sacramento",
"country": "US",
"county": null,
"state": "CA",
"street": "10010 Patched St.",
"zip": "95823"
}
}'
{
"complytId": "9f8ee193-1a71-42b4-801d-ee1d8a161fbe",
"externalId": "externalIdExample",
"source": "sourceExample",
"name": "NameToPatch",
"address": {
"city": "Sacramento",
"country": "US",
"county": null,
"state": "CA",
"street": "10010 Patched St.",
"zip": "95823"
"isPartial": false
},
"email": "example@some.mail.com",
"customerType": "RETAIL",
"internalTimestamps": {
"createdDate": "2023-01-10T17:40:44.357",
"updatedDate": "2023-01-11T17:10:21.275"
},
"externalTimestamps": {
"createdDate": "2022-10-19T07:00:00",
"updatedDate": "2022-10-19T09:07:54.585"
},
"comment": "this is a customer"
}