Skip to main content
GET
/
v1
/
companies
/
{companyId}
Search for a Specific Company
curl --request GET \
  --url https://external.pleo.io/v1/companies/{companyId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "address": {
      "addressLine1": "<string>",
      "addressLine2": "<string>",
      "country": "<string>",
      "locality": "<string>",
      "postalCode": "<string>",
      "region": "<string>"
    },
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "registrationNumber": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

companyId
string<uuid>
required

Enter the company ID.

Response

Company resource found

data
object
required