Skip to content

Create a contact

POST

https://api.responsly.com/v1/contacts

Body parameters

  • list_id (string, required): Contact List ID
  • name (string, optional): Full Name of contact
  • email (string, required): Email of contact
  • data (array, optional): Contact’s data. Example:
{
"phone": "+48123123123"
}

Request

cURL

Terminal window
curl --request POST \
--url 'https://api.responsly.com/v1/contacts' \
--header 'Authorization: Bearer <Access Token>' \
--header 'Content-Type: application/json' \
--data '{
"list_id": "YOUR_LIST_ID",
"name": "Contact Name",
"email": "example@example.com"
}'

Response

Status Code: 204 No Content