GET
/
vendors
/
{id}
curl --request GET \
  --url https://api.antei.com/vendors/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "country": "<string>",
  "tax_id": "<string>",
  "exempt": true,
  "email": "jsmith@example.com"
}

This endpoint returns details of a single vendor based on the vendor ID.

If the vendor does not exist, a 404 error will be returned.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the vendor to retrieve

Response

200
application/json

Vendor details

The response is of type object.