GET
/
suppliers
/
{supplierId}
curl --request GET \
  --url https://dashboard.scango.ch/api/v1/suppliers/{supplierId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

supplierId
string
required

ID of the supplier to retrieve

Response

200 - application/json
Supplier details
data
object