Skip to main content
PATCH
/
projects
/
{project_id}
/
tickets
/
{ticket_id}
Patch ticket fields (title, body, metadata merge)
curl --request PATCH \
  --url https://api.ilyama.golain.io/core/api/v1/projects/{project_id}/tickets/{ticket_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'ORG-ID: <api-key>' \
  --data '
{
  "body": "<string>",
  "due_at": "2023-11-07T05:31:56Z",
  "metadata": {},
  "title": "<string>"
}
'
{
  "data": {
    "item": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ilyama.golain.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

ORG-ID
string
header
required

Path Parameters

project_id
string<uuid>
required
ticket_id
string<uuid>
required

Body

application/json

At least one property should be set (enforced by the API).

body
string
due_at
string<date-time> | null
metadata
object
title
string

Response

Ticket updated

data
object
required
ok
enum<integer>
required
Available options:
1