Suppliers
Access details of the supplier(s) for a given API key.
Get Suppliers
GET
https://api.ventrata.com/octo/suppliers
Returns a list of suppliers and associated contact details based on the suppliers your API Key has access. This will be a single supplier per API key in Ventrata's implementation.
[
{
"id": "697e3ce8-1860-4cbf-80ad-95857df1f640",
"name": "Edin Explore",
"endpoint": "https://api.my-booking-platform.com/v1",
"contact": {
"website": "https://acme-tours.co.fake",
"email": "[email protected]",
"telephone": "+1 888-555-1212",
"address": "123 Fake St. Springfield, USA"
}
}
]
Get Supplier
GET
https://api.ventrata.com/octo/suppliers/{id}
Returns the supplier and associated details.
Path Parameters
Name
Type
Description
id*
string
In Ventrata's impelentation, use your API key or 0.
{
"id": "697e3ce8-1860-4cbf-80ad-95857df1f640",
"name": "Edin Explore",
"endpoint": "https://api.my-booking-platform.com/v1",
"contact": {
"website": "https://acme-tours.co.fake",
"email": "[email protected]",
"telephone": "+1 888-555-1212",
"address": "123 Fake St. Springfield, USA"
}
}
Last updated
Was this helpful?