people
companies
people
Upsert a person record
PUT
/
people
curl --request PUT \
--url https://api.klipycrm.com/api/v1/people \
--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"
}'
{
"success": true,
"data": {
"id": "<string>"
}
}
Authorizations
Body
application/json
Person record to upsert
The body is of type object
.
Response
200
application/json
Success
The response is of type object
.
curl --request PUT \
--url https://api.klipycrm.com/api/v1/people \
--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"
}'
{
"success": true,
"data": {
"id": "<string>"
}
}