Contacts

Create a contact

Create a contact.

POST
/contacts

Create a contact.

Authorization

bearerToken
AuthorizationBearer <token>

Personal access tokens created from the ThriveDesk UI. Create one under Integrations -> API Keys.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/contacts" \  -H "Content-Type: application/json" \  -d '{    "email": "[email protected]"  }'
{  "message": "string",  "contact": {    "id": "string",    "name": "string",    "email": "[email protected]",    "avatar": "http://example.com",    "company": "string",    "website": "string",    "job_title": "string",    "address": "string",    "should_display_image": true,    "notes": "string",    "conversations_count": 0  }}