Skip to content

Vista Digital Platform (V1)

Download OpenAPI description
Languages
Servers
Mock server
https://developer.vista.co/_mock/openapi/digital-platform/openapi

Completed Order Assets

Operations

Completed Orders

Operations

Orders

Operations

Seats

Operations

Discounts

Operations

Events

Operations

Showtimes

Operations

Films

Operations

Gift Cards

Operations

Items

Operations

Journeys

Operations

Third Party Passes

Operations

Loyalty

Operations

Authentication

Operations

Members

Operations

Member Completed Orders

Operations

Friends

Operations

Password Reset

Operations

Payments

Operations

Member Rewards

Operations

Subscriptions

Operations

Ticket Redemption Cards

Operations

Credentials

Operations

Watched Films

Operations

Watchlist Films

Operations

Completion

Operations

Gift shop

Operations

Vouchers

Operations

Refunds

Operations

Seating

Operations

Browsing

Operations

Sites

Operations

Surveys

Operations

Third-Party Member Schemes

Operations

Ticket Prices

Operations

Tracking Events

Operations

Returns an HTTP status code that indicates whether a patron has opened a link on their own device to view a digital representation of their order

Request

This endpoint would be used by the Kiosk via short-polling to see if the order confirmation QR code has been scanned yet, so it knows when to auto-dismiss the prompt for the patron to scan the QR code.

Once the tracking event expiry (of 10 minutes) elapses this endpoint will no longer retain a record of this event and will continue returning Microsoft.AspNetCore.Http.StatusCodes.Status202Accepted again, as if the event was not set.

Licenses Required

  • Vista.Ocapi
Path
trackingIdstringrequired

The identifier of the tracking event, typically the unique identifier of the completed order base that is being monitored

Headers
Connect-Region-Codestring

Region Code

curl -i -X GET \
  'https://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/tracking-events/completed-order-link-opened/{trackingId}' \
  -H 'Connect-Region-Code: string'

Responses

Completed order link opened event not found, client can keep polling.

Sets a tracking event to record that a patron has opened a link on their own device to view a digital representation of their order

Request

This endpoint would be used by the web or mobile app that is opened on the patron's device after they have scanned the order confirmation QR code on the Kiosk.

Note: This tracking event will not be permanently stored. It will expire after 10 minutes.

Licenses Required

  • Vista.Ocapi
Path
trackingIdstringrequired

The identifier of the tracking event, typically the unique identifier of the completed order base that is being monitored

Headers
Connect-Region-Codestring

Region Code

curl -i -X PUT \
  'https://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/tracking-events/completed-order-link-opened/{trackingId}' \
  -H 'Connect-Region-Code: string'

Responses

Completed order link opened event has been stored.

Tips

Operations