Skip to content

KorusTicket API (1.0.38)

KorusTicket API documentation

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

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

Operations

A ticket is a single ticket for an OrderItem. A ticket is issued by the OrderItem's Order.

Operations

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

Operations

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

Operations

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

Operations

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

Operations

Ticket availability

Operations
Operations

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

Operations

OfferTicketSession represents the time slot of an OfferTicket.

Operations

Product Base available option

Operations

Product Base available option values

Operations

Product Base are the main elements of a catalog. They allow to group related products. They contain option with values that can be used to filter products.

Operations

Retrieves the collection of TicketingProductBase resources.

Request

Retrieves the collection of TicketingProductBase resources.

Security
JWT
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
withDisabledbooleantrue|false

If true, the disabled product bases are returned in the response. If false, the disabled product bases are not returned in the response. If not specified, the disabled product bases are not returned in the response.

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

Responses

TicketingProductBase collection

Bodyapplication/ld+json
totalItemsinteger>= 0
searchobject
viewobject
Example: {"@id":"string","@type":"string","first":"string","last":"string","previous":"string","next":"string"}
memberArray of objects(TicketingProductBase.jsonld-v1.product.read)required
member[].​@contextstring or object
One of:
string
member[].​@idstringrequired
member[].​@typestringrequired
member[].​idstring
Example: "0194ad2c-491c-7c9e-b842-10ee940ed6a3"
member[].​namestring
Example: "A great product name"
member[].​descriptionstring
Example: "A great product description"
member[].​disabledboolean
member[].​seatSelectionEnabledboolean
member[].​seatSelectionRequiredboolean
Response
application/ld+json
{ "totalItems": 0, "search": { "@type": "string", "template": "string", "variableRepresentation": "string", "mapping": [] }, "view": { "@id": "string", "@type": "string", "first": "string", "last": "string", "previous": "string", "next": "string" }, "member": [ {} ] }

Retrieves a TicketingProductBase resource.

Request

Retrieves a TicketingProductBase resource.

Security
JWT
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

Product base identifier

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

Responses

TicketingProductBase resource

Bodyapplication/ld+json
@contextstring or object
One of:
string
@idstringrequired
@typestringrequired
idstring
Example: "0194ad2c-491c-7c9e-b842-10ee940ed6a3"
namestring
Example: "A great product name"
descriptionstring
Example: "A great product description"
disabledboolean
seatSelectionEnabledboolean
seatSelectionRequiredboolean
Response
application/ld+json
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "name": "A great product name", "description": "A great product description", "disabled": true, "seatSelectionEnabled": true, "seatSelectionRequired": true }

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

Operations

The SeatMap contains the layout of the seats for a chosen session.

Operations