Skip to main content

Create support ticket

Create support ticket

Endpoint

POST /api/v1/support/tickets

Parameters

Not provided in the generated specification.

Request Schema

{
"title": "Body",
"body": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"subject": {
"type": "string"
},
"category": {
"type": "string"
},
"priority": {
"type": "string"
},
"initialMessage": {
"type": "string"
}
}
}
}
}
}
}

Response Codes

{
"responses": {
"200": {
"description": "Ticket created"
}
}
}