Create/Add Contacts to a Custom Label
POST/v1/contactlist/:id/contacts
Create/Add Contacts to a Custom Label
Request
Path Parameters
id numberrequired
Id of a contact list
Header Parameters
authorization stringrequired
Possible values: Value must match regular expression /Bearer [^\s]+/
Default value: Bearer <Token>
Custom Token generated from the App
- application/json
Body
array
Array [
]
name string
Full Name of contact
phone string
Phone number of the contact
mobile string
Mobile number of the contact
email string
Email of contact
jobTitle string
Job Title of the contact
Responses
- 200
- 202
Successful
- */*
- Schema
- Example (from schema)
Schema
status string
Possible values: [created]
The contacts have been successfully created
{
"status": "created"
}
Accepted
- */*
- Schema
- Example (from schema)
Schema
status string
Possible values: [pending]
The contacts are under creation, please check contacts page in some time.
{
"status": "pending"
}
Loading...