Skip to main content
PUT
/
tickets
/
{id}
Update ticket
curl --request PUT \
  --url https://app.dilli.studio/api/v1/tickets/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "ticket_status_id": "<string>"
}
'
{
  "id": "<string>",
  "title": "<string>",
  "description": "<string>",
  "ticket_status_id": "<string>",
  "position": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
Use the API Playground below to send this request with your X-Api-Key. The base URL and headers are prefilled; update any path, query, or body fields and click Send.

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Body

application/json
title
string
description
string | null
ticket_status_id
string

Response

200 - application/json

OK

id
string
title
string
description
string | null
ticket_status_id
string
position
integer | null
created_at
string<date-time>
updated_at
string<date-time>