Retrieve a company

Gets the specified company.

Single Company

GET https://{{account_id}}.acquire.io/api/v1/crm/objects/company/{{companyId}}

This endpoint is used to obtain specific company details.

Path Parameters

NameTypeDescription

companyId

integer

ID of the company.

Query Parameters

NameTypeDescription

select

array

Can be one of id|dateCreated|dateUpdated

relations

array

Can be one of fields | contacts | companies

Headers

NameTypeDescription

Authorization*

string

Bearer {{API_KEY}}

{
    "data": {
        "dateCreated": "2020-09-10T11:44:05.000Z",
        "dateUpdated": "2020-09-10T11:44:05.000Z",
        "id": 7,
        "fields": {
            "name": "Zery12",
            "website": "zery12.com",
            "logo": "IT",
            "industry": "IT",
            "description": "No description ",
            "source": "No source added",
            "revenue": "1050000",
            "city": "SF1",
            "state": "california"
        },
        "contacts": []
    }
}

Last updated