v1

latestOpenAPI 3.1.02026-08-04103211436.0 KB
Companies

Retrieve company

Returns the detail of a company: legal name, administrative contact, tags and configuration (e.g. accounting currency).

get/companies/{companyId}

Path parameters

companyIdstring required

Response

Successful Response

idstring required

Embat company ID. Use it as companyId in the rest of the API.

legalNamestring required

Company legal name.

updatedAtstring date-time nullable

Last updated date of the entity in the database

createdAtstring date-time nullable

Created date of the entity in the database

Example response

{
  "id": "company_5f2c1a",
  "legalName": "Acme Corporation S.L.",
  "contact": {
    "phone": "+34600123456",
    "name": "Laura",
    "surname": "Fernández",
    "email": "laura.fernandez@acme.com"
  },
  "tags": [
    {
      "id": "tag_4d2f1a",
      "name": "VIP"
    }
  ]
}