CreateCustomerPhoneNumberRequestDto
Request DTO for creating a customer phone number
identifier objectrequired
Identifier information for creating a phone number
customerCodestringrequired
The unique code identifying the customer
Example:
CUST123typestringrequired
The type of phone number (e.g., MOBILE, HOME, WORK)
Example:
MOBILEphoneNumberstringrequired
The phone number to be created
Example:
+1-555-123-4567formatstringrequired
The format specification for the phone number
Example:
E164CreateCustomerPhoneNumberRequestDto
{
"identifier": {
"customerCode": "CUST123",
"type": "MOBILE"
},
"phoneNumber": "+1-555-123-4567",
"format": "E164"
}