v1
latestSwagger 2.02026-08-06114161439.7 KBSMS Broadcast
Add contact numbers to a contact list
Add multiple contact numbers to an existing contact list with validation for duplicates
post/contact-lists/{id}/contacts
Path parameters
idinteger required
The ID of the contact list to add numbers to
Request body
Example request
{
"numbers": [
{
"contact_name": "John",
"country_code": "+1",
"phone_number": "1234567890"
}
]
}Response
Contact numbers added successfully
Example response
{
"status": "success",
"message": "Contact numbers added successfully",
"inserted": 5
}