cURL
curl --request GET \ --url https://api.example.com/public/v2/companies/{company_id}
{ "id": 123, "updated_time": "2023-11-07T05:31:56Z", "domain": "<string>", "previous_status": "<string>", "status_changed_at": "2023-11-07T05:31:56Z", "name": "<string>", "company_status": "<string>", "company_custom_fields": [ { "id": 123, "updated_time": "2023-11-07T05:31:56Z", "field_name": "<string>", "field_value": "<string>" } ] }
Retrieves details of a specific company by its unique identifier.
Format of custom fields in response. NESTED returns array of objects with id, field_name, field_value. FLAT returns object with field names as keys.
FLAT
NESTED
OK. The company was successfully retrieved.
Show child attributes