Skip to main content
PATCH
/
issues
/
{id}
Update issue
curl --request PATCH \
  --url https://productlane.com/api/v2/issues/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "state_id": "<string>",
  "project_id": "<string>",
  "assignee_id": "<string>"
}
'
{
  "id": "<string>",
  "identifier": "<string>",
  "title": "<string>",
  "description": "<string>",
  "priority": "<string>",
  "status": "<string>",
  "linear_team_id": "<string>",
  "url": "<string>",
  "project_id": "<string>",
  "sort_order": 123,
  "created_at": "<string>",
  "updated_at": "<string>",
  "linear_ticket_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/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.

Path Parameters

id
string
required

Body

application/json
title
string
Minimum string length: 1
description
string
state_id
string

Linear workflow state id.

priority

Linear issue priority. 0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low.

Available options:
0
project_id
string | null

Linear project id. Pass null to detach.

assignee_id
string | null

Linear user id. Pass null to unassign.

Response

Successful response

id
string
required
identifier
string
required
title
string
required
description
string | null
required
priority
string
required
status
string
required
linear_team_id
string
required
url
string
required
project_id
string | null
required
sort_order
number
required
created_at
string
required
updated_at
string
required
linear_ticket_id
string
required