KorusTicket API (1.0.4)
KorusTicket API documentation
Download OpenAPI description
Overview
Languages
Servers
Demo server
https://api.demo.korusticket.com/
Production server
https://api.korusticket.com/
- Demo server
https://api.demo.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}
- Production server
https://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", "event": "string", "requiredBeneficiaryFields": [ "firstname", "lastname" ], "beneficiary": { "@context": "string", "@id": "string", "@type": "string", "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 }
- Demo server
https://api.demo.korusticket.com/v1/booking/orders/{orderId}/items/{orderItemId}/tickets/{id}
- Production server
https://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", "event": "string", "requiredBeneficiaryFields": [ "firstname", "lastname" ], "beneficiary": { "@context": "string", "@id": "string", "@type": "string", "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 }