POST
/
interactions
curl --request POST \
  --url https://api.klipycrm.com/api/v1/interactions \
  --header 'Content-Type: application/json' \
  --header 'X-KLIPY-API-KEY: <api-key>' \
  --data '{
  "type": "<string>",
  "direction": "INBOUND",
  "primaryId": "<string>",
  "secondaryId": "<string>",
  "title": "<string>",
  "summary": "<string>",
  "interactionDate": 123,
  "mainContact": "<string>",
  "mainContactEmail": "<string>"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

X-KLIPY-API-KEY
string
header
required

Body

application/json

Interaction record to create

The body is of type object.

Response

200
application/json

Success

The response is of type object.