PATCH
/
people
/
{personId}
curl --request PATCH \
  --url https://api.klipycrm.com/api/v1/people/{personId} \
  --header 'Content-Type: application/json' \
  --header 'X-KLIPY-API-KEY: <api-key>' \
  --data '{
  "email": "john.doe@example.com",
  "linkedin": "in/junghongkim",
  "twitter": "johndoe",
  "facebook": "johndoe",
  "instagram": "johndoe",
  "firstName": "John",
  "lastName": "Doe",
  "title": "Software Engineer",
  "phone": "+1234567890",
  "personalPhone": "+1987654321",
  "whatsapp": "+1234567890",
  "remarks": "Met at conference"
}'
{
  "id": "<string>"
}

Authorizations

X-KLIPY-API-KEY
string
header
required

Path Parameters

personId
string
required

Unique ID of the person record

Body

application/json

Update an existent person record in the team

The body is of type object.

Response

200
application/json

Success

The response is of type object.