Release Ticket Webhook
When a listing has released, the reseller will receive a release ticket webhook request to notify them that that the listing has been released and that they should update the listing quantity.
It is required that resellers update their listing to increase the quantity of the listing by the release quantity provided in the webhook request.
Post Data
Parameter | Description |
---|---|
external_id* | The resellers ID for the listing. Type: String |
hold_quantity* | The quantity to be held. Type: Integer |
Example Request
{
"data": {
"external_id": "92312212",
"release_quantity": 1
},
"meta": {
"type": "ticket.release"
}
}
Resellers JSON Response
It is required that resellers provide a valid JSON response back from the webhook request.
Success Response
{
"listing_id": "92312212",
"success": true,
"message": "Ticket quantity successfully increased."
}
Error Response
{
"listing_id": "92312212",
"success": false,
"message": "Failed to increase listing quantity.",
"errors": [
"Error message here"
]
}