Skip to main content
POST
/
tickets
/
{id}
/
messages
Sending an SMS message
curl --request POST \
  --url https://api.qminder.com/v1/tickets/{id}/messages \
  --header 'Content-Type: application/json' \
  --header 'X-Qminder-REST-API-Key: <api-key>' \
  --data '
{
  "message": "<string>",
  "user": 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 send the message to.

Body

message
string
required

The message to send. The message should be URL-encoded.

user
integer<int32>

The user who sent the message.

Response

200 - application/json

200

statusCode
integer
default:0
Example:

200

result
string
Example:

"success"