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:
CUST123
typestringrequired
The type of phone number (e.g., MOBILE, HOME, WORK)
Example:
MOBILE
phoneNumberstringrequired
The phone number to be created
Example:
+1-555-123-4567
formatstringrequired
The format specification for the phone number
Example:
E164
CreateCustomerPhoneNumberRequestDto
{
"identifier": {
"customerCode": "CUST123",
"type": "MOBILE"
},
"phoneNumber": "+1-555-123-4567",
"format": "E164"
}