🚀 Simplify your work by integrating Haufe Copilot via API
Threads

List threads

Returns a paginated list of threads for the current tenant. Supports cursor-based pagination and filtering by user ID.

GET/v1/threads

Authorization

APIKeyHeader
api-key<token>

In: header

Query Parameters

limit?Limit
Default100
cursor?|

Cursor string

user_id?string|null
include_deleted?Include Deleted
Defaultfalse

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/threads"
{  "cursor": "string",  "items": [    {      "assistant_id": "a1b2c3d4-5678-9abc-def0-1234567890ab",      "created_at": "2025-03-15T09:12:33.456789Z",      "id": "1a2b3c4d-5678-9abc-def0-112233445566",      "last_updated_at": "2025-03-15T09:45:12.123456Z",      "tenant_id": "abcd1234-ef56-7890-abcd-ef1234567890",      "title": "Kündigung während der Probezeit",      "user_id": "f8e7d6c5-4321-fedc-ba98-765432109876"    }  ]}
{  "error_code": "unauthorized",  "detail": "Missing or invalid API key"}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string",      "input": null,      "ctx": {}    }  ]}

{  "message": "Rate limit exceeded!"}

{  "error_code": "internal_server_error",  "detail": "Internal Server Error"}