KorusTicket API documentation
BookingOrderItemTicket
KorusTicket API
BookingOrderDocument
BookingOrder
BookingReservation
TicketingCatalog
TicketingOffer
TicketingOfferAvailability
TicketingOfferPrice
TicketingOfferTicket
TicketingOfferTicketSession
TicketingProductBaseOption
TicketingProductBaseOptionValue
TicketingProductBase
TicketingProduct
KorusTicket API (1.0.19)
Download OpenAPI description
Overview
Languages
Servers
Demo server
https://api.demo.korusticket.com/
Production server
https://api.korusticket.com/
- Demo serverhttps://api.demo.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}
- Production serverhttps://api.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.demo.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/ld+json
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194cb22-b891-754c-8c4c-777b93f8d072", "voucher": "string", "occursAt": "2025-02-27T15:15:20+00:00", "requiredBeneficiaryFields": [ "firstname", "lastname" ], "beneficiary": { "firstname": "John", "lastname": "Doe", "email": "[email protected]", "phone": "+33610203040", "title": "mr", "dateOfBirth": "2000-01-01", "placeOfBirth": "Aix-en-Provence", "nationality": "FR" }, "beneficiaryDesignationDeadline": "2019-08-24T14:15:22Z", "beneficiaryAmendable": true, "status": "waiting_beneficiary_data", "seating": {} }
- Demo serverhttps://api.demo.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}
- Production serverhttps://api.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
'https://api.demo.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/merge-patch+json' \
-d '{
"beneficiary": {
"firstname": "john",
"lastname": "doe",
"title": "mr",
"nationality": "FR",
"dateOfBirth": "2000-01-01",
"placeOfBirth": "string",
"email": "string",
"phone": "string"
}
}'Response
application/ld+json
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194cb22-b891-754c-8c4c-777b93f8d072", "voucher": "string", "occursAt": "2025-02-27T15:15:20+00:00", "requiredBeneficiaryFields": [ "firstname", "lastname" ], "beneficiary": { "firstname": "John", "lastname": "Doe", "email": "[email protected]", "phone": "+33610203040", "title": "mr", "dateOfBirth": "2000-01-01", "placeOfBirth": "Aix-en-Provence", "nationality": "FR" }, "beneficiaryDesignationDeadline": "2019-08-24T14:15:22Z", "beneficiaryAmendable": true, "status": "waiting_beneficiary_data", "seating": {} }