Ventrata OCTO API
Ventrata.comOCTO.travel
  • Welcome
  • Getting Started
    • Steps to Integrate
    • Glossary of Terms
    • Authentication
    • Test Credentials
    • Headers
    • Errors
    • Localization
  • Endpoints & Capabilities
  • OCTO Core
    • Suppliers
    • Products
    • Availability
    • Bookings
  • Capabilities
    • Pricing
    • Content
    • Pickups
    • Webhooks
    • Self-Service Mapping
    • Promotions / Offers
    • Custom Questions
    • Extras
    • Price Adjustments
    • Multi-Booking Cart
    • Card Payments
    • Resources
    • Packages
    • Gift Vouchers
    • Redemption
    • Online Check-in
    • Identities
    • Memberships
    • Rentals
  • Additional Resources
    • Ventrata Clients
    • Other OCTO Implementations
    • Support
    • FAQs
Powered by GitBook
On this page
  • Get Suppliers
  • Get Supplier

Was this helpful?

Edit on GitHub
  1. OCTO Core

Suppliers

PreviousEndpoints & CapabilitiesNextProducts

Last updated 1 year ago

Was this helpful?

Access details of the supplier(s) for a given API key.

Note that in Ventrata's implementation of OCTO, the API key provides access to a single supplier (see ). This means that both and will only return details for a single supplier your API key is for.

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": "info@edinexplore.com",
      "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": "info@edinexplore.com",
    "telephone": "+1 888-555-1212",
    "address": "123 Fake St. Springfield, USA"
  }
}
Authentication
Get Suppliers
Get Supplier