Broker Closed Webhook
The broker closed webhook will be sent to the reseller to advise them that the brokers account on Tixstock has been closed, or if the broker is disconnecting from the resellers exchange from within Tixstock.
Once a brokers account has been closed, the reseller will not be able to publish / update any listings associated to the broker.
Post Data
Parameter | Description |
---|---|
broker_id* | The brokers ID. Type: String |
Example Request
{
"data": {
"broker_id": "1231231"
},
"meta": {
"type": "broker.closed"
}
}
Resellers JSON Response
It is required that resellers provide a valid JSON response back from the webhook request.
Success Response
{
"broker_id": "1231231",
"success": "true",
"message": "Broker has been successfully disconnected"
}
Error Response
{
"broker_id": "1231231",
"success": "false",
"message": "Broker failed to disconnect"
}