Skip to main content
GET
/
v1
/
vendors
/
{id}
Retrieves a Vendor in Pleo by its id
curl --request GET \
  --url https://external.pleo.io/v1/vendors/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "companyId": "c082afd8-c1d2-46ee-8f56-1512638f0e67",
    "defaultCurrency": "DKK",
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Pleo",
    "state": "DRAFT",
    "code": "<string>",
    "country": "UNDEFINED",
    "createdAt": "2023-11-07T05:31:56Z",
    "externalId": "<string>",
    "registrationNumber": "<string>",
    "taxRegistrationNumber": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Enter the specific vendor ID of the record that you want to view in detail.

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Fetches vendor by id

data
object
required