KorusTicket API (dev)

KorusTicket API documentation

Download OpenAPI description
Languages
Servers
Demo server
https://api.demo.korusticket.com/
Production server
https://api.korusticket.com/

BookingOrderDocument

The files associated to the Order. These are typically the customer's tickets for the Event.

Operations

BookingOrder

An Order is an actual booking in the ticket issuer's system.

Operations

BookingReservation

A reservation temporarily holds an Offer, guaranteeing its availability and price for a limited time in the ticket issuer's system.

Operations

FormFieldChoice

Form field choice is a predefined option that users can select from a list of available values in a form field.

FormField

Form fields compose a form. A field has a type and can be required or not. When submitting a form, all required fields must be completed with valid values.

Form

A Form can be used to pass custom data to the API. A form is composed of FormField items.

Operations

TicketingCatalog

A Catalog is the ticket issuer's collection of products and events. There is usually only one Catalog per TicketIssuer.

Operations

TicketingEvent

Event is an activity that can occur one or multiple times. Every occurrence of this event is a Session.

Operations

Retrieves the collection of TicketingEvent resources.

Request

Retrieves the collection of TicketingEvent resources.

Path
catalogIdstring[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0...required

Catalog identifier

Query
pageinteger

The collection page number

Default 1
itemsPerPageinteger[ 0 .. 50 ]

The number of items per page

Default 10
curl -i -X GET \
  'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/events?itemsPerPage=10&page=1' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

TicketingEvent collection

Bodyapplication/ld+json
memberArray of objects(TicketingEvent.jsonld-v1.event.read)required
member[].​@contextstring or objectread-only
One of:
stringread-only
member[].​@idstringread-only
member[].​@typestringread-only
member[].​idstring
Example: "0194cb34-2e9c-7217-9040-c733a5c8637b"
member[].​namestring
Example: "A great event name"
member[].​descriptionstring
Example: "A great event description"
totalItemsinteger>= 0
viewobject
Example: {"@id":"string","type":"string","first":"string","last":"string","previous":"string","next":"string"}
searchobject
Response
application/ld+json
{ "member": [ {} ], "totalItems": 0, "view": { "@id": "string", "type": "string", "first": "string", "last": "string", "previous": "string", "next": "string" }, "search": { "@type": "string", "template": "string", "variableRepresentation": "string", "mapping": [] } }

Retrieves a TicketingEvent resource.

Request

Retrieves a TicketingEvent resource.

Path
catalogIdstring[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0...required

Catalog identifier

idstring[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0...required

Event identifier

curl -i -X GET \
  'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/events/{id}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

TicketingEvent resource

Bodyapplication/ld+json
@contextstring or objectread-only
One of:
stringread-only
@idstringread-only
@typestringread-only
idstring
Example: "0194cb34-2e9c-7217-9040-c733a5c8637b"
namestring
Example: "A great event name"
descriptionstring
Example: "A great event description"
Response
application/ld+json
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194cb34-2e9c-7217-9040-c733a5c8637b", "name": "A great event name", "description": "A great event description" }

TicketingOfferAvailability

Ticket availability

Operations

TicketingOfferPrice

Offer Price

Operations

TicketingOfferTicket

The tickets contained in an Offer. A tickets give access to an Event's sessions.

Operations

TicketingOffer

It is the price table of a product. Offers defines the price and availability of a Product at a specific date.

Operations

TicketingProduct

Products are elements that can be purchased to access an Event. The price and availability of a product at specific date and for a specific category are specified in the Offer object.

Operations

TicketingSessionAvailability

Session availability

Operations

TicketingSession

Session is an occurrence of an event.

Operations