GET
/
v2
/
agent
/
threads
List persisted assistant threads
curl --request GET \
  --url https://api-v2.watchcollect.com/v2/agent/threads \
  --header 'Authorization: Bearer <token>'
{
  "threads": [
    {
      "remoteId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "createdAtMs": 123,
      "updatedAtMs": 123,
      "externalId": "<string>",
      "title": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Persisted assistant threads.

threads
object[]
required