people
companies
people
Get person record by ID
GET
/
people
/
{personId}
curl --request GET \
--url https://api.klipycrm.com/api/v1/people/{personId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"companyId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"linkedin": "<string>",
"owner": "<string>",
"phone": "<string>",
"source": "<string>",
"title": "<string>",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"lastInteraction": "2023-11-07T05:31:56Z"
}
}
Authorizations
Path Parameters
Unique ID of the person record
Response
200
application/json
Success
The response is of type object
.
curl --request GET \
--url https://api.klipycrm.com/api/v1/people/{personId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"companyId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"linkedin": "<string>",
"owner": "<string>",
"phone": "<string>",
"source": "<string>",
"title": "<string>",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"lastInteraction": "2023-11-07T05:31:56Z"
}
}