POST
/
people
curl --request POST \
  --url https://api.klipycrm.com/api/v1/people \
  --header 'Content-Type: application/json' \
  --header 'X-KLIPY-API-KEY: <api-key>' \
  --data '{
  "type": "email",
  "identifier": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "title": "<string>"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

X-KLIPY-API-KEY
string
header
required

Body

application/json

Person record to create

The body is of type object.

Response

200
application/json

Success

The response is of type object.