people
companies
companies
Update company record
PATCH
/
companies
/
{companyId}
curl --request PATCH \
--url https://api.klipycrm.com/api/v1/companies/{companyId} \
--header 'Content-Type: application/json' \
--header 'X-KLIPY-API-KEY: <api-key>' \
--data '{
"domain": "example.com",
"description": "A software company specializing in AI solutions",
"name": "Example Corp",
"altIndustries": [
"Software",
"AI"
],
"tags": [
"enterprise",
"b2b"
],
"foundedYear": 2010,
"address": "123 Main St",
"city": "San Francisco",
"state": "CA",
"country": "USA",
"linkedin": "company/example-corp",
"twitter": "examplecorp",
"facebook": "examplecorp",
"instagram": "examplecorp",
"crunchbase": "organization/example-corp",
"phone": "+1234567890",
"remarks": "Potential enterprise client"
}'
{
"success": true,
"data": {
"id": "<string>"
}
}
Authorizations
Path Parameters
Unique ID of the company record
Body
application/json
Update an existent company record in the team
The body is of type object
.
Response
200
application/json
Success
The response is of type object
.
curl --request PATCH \
--url https://api.klipycrm.com/api/v1/companies/{companyId} \
--header 'Content-Type: application/json' \
--header 'X-KLIPY-API-KEY: <api-key>' \
--data '{
"domain": "example.com",
"description": "A software company specializing in AI solutions",
"name": "Example Corp",
"altIndustries": [
"Software",
"AI"
],
"tags": [
"enterprise",
"b2b"
],
"foundedYear": 2010,
"address": "123 Main St",
"city": "San Francisco",
"state": "CA",
"country": "USA",
"linkedin": "company/example-corp",
"twitter": "examplecorp",
"facebook": "examplecorp",
"instagram": "examplecorp",
"crunchbase": "organization/example-corp",
"phone": "+1234567890",
"remarks": "Potential enterprise client"
}'
{
"success": true,
"data": {
"id": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.