Skip to main content
POST
/
tickets
/
{id}
/
reorder
Reordering a ticket
curl --request POST \
  --url https://api.qminder.com/v1/tickets/{id}/reorder \
  --header 'Content-Type: application/json' \
  --header 'X-Qminder-REST-API-Key: <api-key>' \
  --data '{
  "after": 123
}'
"{\n  \"statusCode\": 200,\n  \"result\": \"success\"\n}"

Authorizations

X-Qminder-REST-API-Key
string
header
default:yourbusinessapikey
required

Path Parameters

id
string
required

The ID of the ticket to reorder.

Body

after
integer<int32>

The current ticket will be placed after this ID. If unset, then the ticket will be reordered to be first in the queue.

Response

200 - application/json

200

statusCode
integer
default:0
Example:

200

result
string
Example:

"success"