Skip to main content
PATCH
/
v1
/
company
/
{companyId}
curl --request PATCH \
  --url https://openapi.enginy.ai/v1/company/{companyId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "Acme Inc.",
  "website": "https://acme.com",
  "industry": "Software",
  "numberOfEmployees": 120
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "id": 123,
    "name": "<string>",
    "domain": "<string>",
    "website": "<string>",
    "companyLinkedInUrl": "<string>",
    "industry": "<string>",
    "rangeOfEmployees": "<string>",
    "numberOfEmployees": 123,
    "yearfounded": "<string>",
    "description": "<string>",
    "country": "<string>",
    "city": "<string>",
    "streetAddress": "<string>",
    "phoneNumber": "<string>",
    "companyEmail": "<string>",
    "revenueRange": "<string>",
    "hiringOnLinkedIn": true,
    "openJobPositions": 123,
    "companyCRMId": "<string>",
    "isCompanyInCRM": true,
    "createdAt": "2023-12-25",
    "updatedAt": "2023-12-25",
    "smartFieldExplanations": {}
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
string
required

The company ID

Body

application/json

Fields to update on the company. Supports standard and custom/AI fields by name.

{key}
any

Response

Company updated successfully

status
enum<string>
required
Available options:
success
message
string
required
data
object
required