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
type
enum<string>
required

Type of the person unique identifier

Available options:
email
identifier
string
required

Identifier of the person record (only email is supported for now)

firstName
string
required

First name of the person record

lastName
string | null

Last name of the person record

title
string | null

Job title of the person record

Response

200
application/json
Success
success
boolean
data
object