Skip to main content
GET
/
threads
List threads
curl --request GET \
  --url https://productlane.com/api/v1/threads \
  --header 'Authorization: Bearer <token>'
{
  "threads": [
    {
      "id": "<string>",
      "painLevel": "UNKNOWN",
      "origin": "INAPP",
      "title": "<string>",
      "text": "<string>",
      "snoozedUntil": "2023-11-07T05:31:56Z",
      "zendeskId": "<string>",
      "uniqueId": "<string>",
      "workspaceId": "<string>",
      "productboardId": "<string>",
      "state": "NEW",
      "lastInboundMessageAt": "2023-11-07T05:31:56Z",
      "lastOutboundMessageAt": "2023-11-07T05:31:56Z",
      "lastStateChangeAt": "2023-11-07T05:31:56Z",
      "slackChannelId": "<string>",
      "slackReplyId": "<string>",
      "linearAttachmentId": "<string>",
      "company": {
        "id": "<string>",
        "name": "<string>",
        "workspaceId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "isDeleted": true,
        "version": 123,
        "linearCustomerId": "<string>",
        "size": 123,
        "revenue": 123,
        "statusId": "<string>",
        "statusName": "<string>",
        "statusColor": "<string>",
        "tierId": "<string>",
        "tierName": "<string>",
        "logoUrl": "<string>",
        "domains": [
          "<string>"
        ],
        "autoAdd": true,
        "intercomId": "<string>",
        "hubspotId": "<string>",
        "productboardId": "<string>",
        "externalIds": [
          "<string>"
        ],
        "slugId": "<string>"
      },
      "reporter": {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>",
        "role": "<string>",
        "imageUrl": "<string>",
        "selectedTeamIds": [
          "<string>"
        ],
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      },
      "contact": {
        "id": "<string>",
        "email": "<string>",
        "name": "<string>",
        "imageUrl": "<string>",
        "companyId": "<string>",
        "workspaceId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z",
        "isDeleted": true,
        "version": 123,
        "intercomId": "<string>",
        "hubspotId": "<string>",
        "productboardId": "<string>",
        "zendeskId": "<string>"
      },
      "tags": [
        {
          "id": "<string>",
          "name": "<string>",
          "color": "<string>",
          "icon": "<string>",
          "tagGroupId": "<string>"
        }
      ],
      "assignee": {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>",
        "role": "<string>",
        "imageUrl": "<string>",
        "selectedTeamIds": [
          "<string>"
        ],
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      },
      "customerNeeds": [
        {
          "id": "<string>",
          "feedbackId": "<string>",
          "projectId": "<string>",
          "issueId": "<string>",
          "linearCustomerNeedId": "<string>",
          "priority": 123,
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ]
    }
  ],
  "nextPage": {
    "take": 123,
    "skip": 123
  },
  "hasMore": true,
  "count": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

skip
integer
take
integer
Required range: x <= 100
state
enum<string>
Available options:
NEW,
PROCESSED,
COMPLETED,
SNOOZED,
UNSNOOZED
issueId
string
projectId
string

Response

Successful response

threads
object[]
required
nextPage
object
required
hasMore
boolean
required
count
number
required