people
companies
companies
Get company record by ID
GET
/
companies
/
{companyId}
curl --request GET \
--url https://api.klipycrm.com/api/v1/companies/{companyId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"domainAliases": [
"<string>"
],
"description": "<string>",
"primaryIndustry": "<string>",
"altIndustries": [
"<string>"
],
"industryGroup": "<string>",
"tags": [
"<string>"
],
"arr": "<string>",
"numEmployees": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"linkedin": "<string>",
"twitter": "<string>",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"lastInteraction": "2023-11-07T05:31:56Z"
}
}
Authorizations
Path Parameters
Unique ID of the company record
Response
200
application/json
Success
The response is of type object
.
curl --request GET \
--url https://api.klipycrm.com/api/v1/companies/{companyId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"domainAliases": [
"<string>"
],
"description": "<string>",
"primaryIndustry": "<string>",
"altIndustries": [
"<string>"
],
"industryGroup": "<string>",
"tags": [
"<string>"
],
"arr": "<string>",
"numEmployees": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"linkedin": "<string>",
"twitter": "<string>",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"lastInteraction": "2023-11-07T05:31:56Z"
}
}