Skip to main content
GET
/
suppliers
/
{id}
Supplier
curl --request GET \
  --url https://api.sandbox.isometric.com/registry/v0/suppliers/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-client-secret: <x-client-secret>'
{
  "id": "<string>",
  "location": {
    "country_code": "<string>",
    "country_name": "<string>",
    "latitude": 0,
    "longitude": 0,
    "description": "<string>"
  },
  "long_description": "<string>",
  "organisation": {
    "domain": "isometric.com",
    "id": "<string>",
    "name": "<string>"
  },
  "short_description": "<string>"
}

Authorizations

Authorization
string
header
required

A JWT Bearer token header for authentication and authorization, in the format Authorization: Bearer <token>

Headers

x-client-secret
string
required

A secret token identifying the client connecting to the API A secret token identifying the client connecting to the API

Path Parameters

id
string
required

Response

Supplier · object | null

Successful Response

id
string
required
Required string length: 20 - 37
location
Location · object
required
long_description
string | null
required
organisation
Organisation · object
required
short_description
string | null
required