Skip to main content
PATCH
/
threads
/
{id}
Update thread
curl --request PATCH \
  --url https://productlane.com/api/v2/threads/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>",
  "title": "<string>",
  "assignee_id": "<string>",
  "contact_id": "<string>",
  "company_id": "<string>",
  "tag_ids": [
    "<string>"
  ],
  "project_id": "<string>",
  "snoozed_until": "2023-11-07T05:31:56Z",
  "closed_loop": true,
  "ai_draft_html": "<string>",
  "ai_draft_sources": "<array>",
  "clear_ai_draft_error": true,
  "notify": {
    "slack": true,
    "email": true
  }
}
'
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "title": "<string>",
  "text": "<string>",
  "origin": "<string>",
  "snoozed_until": "<string>",
  "last_inbound_message_at": "<string>",
  "last_outbound_message_at": "<string>",
  "last_state_change_at": "<string>",
  "is_read": true,
  "contact": {
    "id": "<string>",
    "email": "<string>",
    "name": "<string>",
    "image_url": "<string>",
    "company_id": "<string>",
    "is_subscribed": true,
    "external_ids": {
      "intercom": "<string>",
      "front": "<string>",
      "zendesk": "<string>",
      "hubspot": "<string>",
      "plain": "<string>",
      "productboard": "<string>",
      "slack_channel": "<string>"
    },
    "created_at": "<string>",
    "updated_at": "<string>"
  },
  "company": {
    "id": "<string>",
    "name": "<string>",
    "logo_url": "<string>",
    "domains": [
      "<string>"
    ],
    "size": 123,
    "revenue": 123,
    "status_id": "<string>",
    "status_name": "<string>",
    "tier_id": "<string>",
    "tier_name": "<string>",
    "owner": {
      "id": "<string>",
      "name": "<string>",
      "avatar_url": "<string>"
    },
    "external_ids": {
      "intercom": "<string>",
      "front": "<string>",
      "zendesk": "<string>",
      "hubspot": "<string>",
      "plain": "<string>",
      "productboard": "<string>",
      "slack_channel": "<string>"
    },
    "created_at": "<string>",
    "updated_at": "<string>"
  },
  "assignee": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "image_url": "<string>"
  },
  "reporter": {
    "id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "image_url": "<string>"
  },
  "tags": [
    {
      "id": "<string>",
      "name": "<string>",
      "color": "<string>",
      "icon": "<string>",
      "tag_group_id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "customer_needs": [
    {
      "id": "<string>",
      "thread_id": "<string>",
      "project_id": "<string>",
      "issue_id": "<string>",
      "priority": 123,
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "external_ids": {
    "intercom": "<string>",
    "front": "<string>",
    "zendesk": "<string>",
    "hubspot": "<string>",
    "plain": "<string>",
    "productboard": "<string>",
    "slack_channel": "<string>"
  },
  "ai_draft_html": "<string>",
  "ai_draft_sources": "<array>",
  "ai_draft_generated_at": "<string>",
  "ai_draft_started_at": "<string>",
  "ai_draft_error_at": "<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
text
string
Minimum string length: 1
title
string | null
Maximum string length: 512
pain_level
enum<string>
Available options:
UNKNOWN,
LOW,
MEDIUM,
HIGH
assignee_id
string | null

Workspace user id. Pass null to unassign.

contact_id
string
company_id
string | null

Pass null to detach. Also propagates onto the thread's contact.

tag_ids
string[]

Replaces the thread's full tag set.

project_id
string | null
status
enum<string>

When snoozed, snoozed_until is required.

Available options:
open,
snoozed,
done
snoozed_until
string<date-time>
closed_loop
boolean

With status=done, marks the thread as fully closed.

ai_draft_html
string | null

HTML body prefilled into the composer for the next outbound reply. Setting this stamps ai_draft_generated_at and clears ai_draft_started_at + ai_draft_error_at. Pass null (or an empty string) to clear the draft.

ai_draft_sources
array | null

Sources the AI consulted while generating the draft. Surfaces in the composer's "Drafted by AI" tooltip. Shape: { type, title, identifier?, url? }[]. Pass null to clear.

clear_ai_draft_error
boolean

When true, clears ai_draft_error_at. Use this to dismiss a stuck error pill in the composer without writing a new draft.

notify
object

Side-channel notifications to fire alongside the write (Slack and/or email).

Response

Successful response

id
string
required
created_at
string
required
updated_at
string
required
title
string | null
required
text
string
required
pain_level
enum<string>
required
Available options:
UNKNOWN,
LOW,
MEDIUM,
HIGH
origin
string
required
status
enum<string>
required
Available options:
open,
snoozed,
done
tab
enum<string>
required
Available options:
open,
new,
needs-response,
my,
snoozed,
done
snoozed_until
string | null
required
last_inbound_message_at
string | null
required
last_outbound_message_at
string | null
required
last_state_change_at
string | null
required
is_read
boolean
required
contact
object
required
company
object
required
assignee
object
required
reporter
object
required
tags
object[]
required
customer_needs
object[]
required
external_ids
object
required
ai_draft_html
string | null
required
ai_draft_sources
array | null
required
ai_draft_generated_at
string | null
required
ai_draft_started_at
string | null
required
ai_draft_error_at
string | null
required