🔁APIs
Pages Endpoints
FAQ Endpoints
Tickets Endpoints
You Can Open a New ticket with this API
Body
namestring | nullOptional
phonestring | nullOptional
subjectstringRequired
messagestring | nullOptional
Responses
200Success
application/json
Responseany of
objectOptional
objectOptional
422
Validation error
application/json
post
POST /api/tickets HTTP/1.1
Host: cm.test
Content-Type: application/json
Accept: */*
Content-Length: 58
{
"name": null,
"phone": null,
"subject": "text",
"message": null
}
{}
You can Send A comment on the ticket by use this API
Path parameters
modelstringRequired
Body
responsestringRequired
Responses
200Success
application/json
Responseany of
stringOptional
or
422
Validation error
application/json
post
POST /api/tickets/{model} HTTP/1.1
Host: cm.test
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"response": "text"
}
text
Last updated
Was this helpful?