Create multiple contacts
POST/v1/contactlist/active/contacts
Create multiple contacts
Request
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
contact_type string
Possible values: [contact, employee]
Default value: contact
Type of contact
Responses
- 200
- 202
Successful
- */*
- Schema
- Example (from schema)
Schema
status string
Possible values: [created/updated]
The contacts have been successfully created
{
"status": "created/updated"
}
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...