Skip to main content
GET
/
vendors
/
{id}
Get vendor by 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

Vendor details

id
string
required

Unique identifier for the vendor

name
string
required

Vendor's legal or trading name

country
string
required

Country of vendor operation

tax_id
string

Vendor's tax identification number

exempt
boolean

Indicates whether the vendor is tax exempt

email
string<email>

Vendor's contact email