The endpoint is designed to update a customer's profile in the system.
The
No Content
response indicates that the request was successfully processed
To validate the survey data (KYC0), the following regular expressions are currently used:
-
Country validation:
"[a-zA-Z]{2,3}"
— Validates the country code, ensuring it consists of 2 to 3 alphabetic characters. -
City validation:
"[a-zA-Z0-9\\- /.,#]+"
— Validates city names, allowing letters, numbers, and specific symbols like hyphens, spaces, slashes, periods, commas, and hashes. -
Street address validation:
"[a-zA-Z0-9\\- /.,#]+"
— Validates street addresses with the same pattern as city names, accommodating various address formats. -
Zip validation:
"[a-zA-Z0-9_.\"\\-,\\s&]*"
— Validates zip codes, permitting letters, numbers, and a range of symbols including periods, quotes, hyphens, commas, spaces, and ampersands.