Create a contact
POST/v3/contacts
Create a contact
Request
Header Parameters
Possible values: Value must match regular expression /Bearer [^\s]+/
Default value: Bearer <Token>
Custom Token generated from the App
- application/json
Body
Possible values: <= 255 characters
Full Name of contact
Possible values: <= 255 characters
Phone number of the contact
Possible values: <= 255 characters
Mobile number of the contact
Possible values: <= 255 characters
Email of contact
Possible values: <= 255 characters
Job Title of the contact
Possible values: [contact
, employee
]
Default value: contact
Type of contact
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
data
object
Possible values: <= 255 characters
Full Name of contact
Email of contact
Possible values: <= 255 characters
Phone number of the contact
Possible values: <= 255 characters
Mobile number of the contact
Possible values: <= 255 characters
Job Title of the contact
Possible values: [contact
, employee
]
Default value: contact
Type of contact
{
"data": {
"full_name": "Jane Doe",
"email": "janedoe@surveysparrow.com",
"phone": "91234567833",
"mobile": "1653452783",
"job_title": "Manager",
"contact_type": "contact"
}
}