Skip to main content
GET
/
v1
/
suppliers
/
{id}
Get supplier by id
curl --request GET \
  --url https://prod-api.civicmarketplace.com/v1/suppliers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "updated_at": "2023-11-07T05:31:56Z",
  "location": "Austin, TX",
  "logo": "<string>",
  "email": "[email protected]",
  "website": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Supplier

id
string
required
name
string
required
updated_at
string<date-time>
required
location
string | null
Example:

"Austin, TX"

logo
string<uri> | null
email
string<email> | null
website
string<uri> | null