Jetron TicketFluid
Checkout

Release a reservation

DELETE
/events/{slug}/reservations

Releases a held reservation, freeing the stock. Echo the reservationToken as the X-Device-ID header. If omitted, the server falls back to the reservation held for your client IP + event (the same fallback used when reserving without a token). Returns 400 if neither a token nor a matching anonymous reservation is found.

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Your public API key (e.g. jt_public_...) passed as a Bearer token.

In: header

Path Parameters

slug*string

The event's URL slug.

Header Parameters

X-Device-ID?string

The reservationToken identifying the reservation to release. If omitted, the server releases the reservation held for your client IP + event, if one exists.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X DELETE "https://example.com/events/string/reservations"
{  "status": true,  "data": {    "released": true  }}