Skip to main content
GET
/
connect
/
v1
/
operators
/
{operatorId}
/
bookings
List all bookings (operator-scoped)
curl --request GET \
  --url https://api.voyant.travel/connect/v1/operators/{operatorId}/bookings \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "connectionId": "<string>",
      "supplierName": "<string>",
      "externalBookingId": "<string>",
      "status": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "providerKey": "<string>",
      "productExternalId": "<string>",
      "optionExternalId": "<string>",
      "sourceType": "<string>",
      "supplierConfirmationStatus": "<string>",
      "confirmedAt": "2023-11-07T05:31:56Z",
      "cancelledAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Provide either a static platform API key or an OAuth2 access token (from /connect/v1/oauth/token) as Authorization: Bearer <token>. Scopes are connect:* (e.g. connect:bookings:write).

Path Parameters

operatorId
string
required

Operator id.

Query Parameters

localDateStart
string
localDateEnd
string
status
limit
integer

Max rows to return.

Required range: 1 <= x <= 200
connectionId

Restrict to one or more connections (repeat the param for multiple).

providerKey

Restrict to one or more provider keys (repeat the param for multiple).

Response

200 - application/json

Bookings.

data
object[]