Skip to main content
GET
/
api
/
v1
/
user
/
conversations
[
  {
    "id": "<string>",
    "title": "<string>",
    "status": "<string>",
    "project_ids": [
      "<string>"
    ],
    "agent_id": "<string>",
    "repository": "<string>",
    "branch": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

start
integer
default:0
Required range: x >= 0
limit
integer
default:10
Required range: x >= 1
sort
enum<string>
default:updated_at

Field to sort by

Available options:
updated_at,
created_at
order
enum<string>
default:desc

Direction of sort

Available options:
asc,
desc

Response

Successful Response

id
string
required
title
string | null
required
status
string | null
required
project_ids
string[] | null
required
agent_id
string | null
required
repository
string | null
required
branch
string | null
required
created_at
string
required
updated_at
string
required
I