Create a contact
POST
https://api.responsly.com/v1/contacts
Body parameters
Section titled “Body parameters”list_id
(string, required): Contact List IDname
(string, optional): Full Name of contactemail
(string, required): Email of contactdata
(array, optional): Contact’s data. Example:
{ "phone": "+48123123123"}
Request
Section titled “Request”cURL
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
Section titled “Response”Status Code: 204 No Content