Skip to content

Decide on a submission

Request

Take a decision (approve/reject) on the content submission

Security
SessionKey(Required scopes: administrator)
Path
submissionintegerrequired

Unique identifier of the requested submission

Bodyapplication/json
approvedbooleanrequired

Whether or not to approve (true) or reject (false) the submitted content.

notestring

Note included wuth the decision for attention of the submitter.

curl -i -X POST \
  'https://docs.ticketingevents.com/_mock/openapi/submissions/{submission}/decision' \
  -H 'Content-Type: application/json' \
  -H 'X-API-Key: YOUR_API_KEY_HERE' \
  -d '{
    "approved": false,
    "note": "The submitted content violates TiceTing'\''s content guidelines."
  }'

Responses

The decision was successfully taken on the specified submission.

Bodyapplication/json
approvedboolean

True if the submitted content was approved for publication, false if it was rejected.

notestring

Note included wuth the decision for attention of the submitter.

Response
{ "approved": false, "note": "The submitted content violates TiceTing's content guidelines." }