Skip to main content
POST
/
tickets
/
{ticketId}
/
fields
/
{inputFieldId}
curl --request POST \
  --url https://api.qminder.com/v1/tickets/{ticketId}/fields/{inputFieldId} \
  --header 'Content-Type: application/json' \
  --header 'X-Qminder-API-Version: <x-qminder-api-version>' \
  --header 'X-Qminder-REST-API-Key: <api-key>' \
  --data '
{
  "value": "Customer needs wheelchair access"
}
'

Authorizations

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

Headers

X-Qminder-API-Version
enum<string>
required

API version. Must be set to 2020-09-01.

Available options:
2020-09-01

Path Parameters

ticketId
string
required

ID of the ticket

inputFieldId
string<uuid>
required

UUID of the input field

Body

application/json
value
string

Text value for text or URL input fields (max 500 characters).

Maximum string length: 500
optionIds
string<uuid>[]

UUIDs of selected options for select-type input fields.

Response

Input field value saved successfully