Apps
List app sessions
Lists conversation sessions of an app. A session groups runs that share a session_id.
Authorization
personalAccessToken AuthorizationBearer <token>
Personal Access Token of a Dynamiq user — the only credential accepted by the management API (api.*). Prefix dyn_pat_ (legacy uak_ tokens still authenticate). Send as Authorization: Bearer <token>.
In: header
Path Parameters
app_id*string
App UUID.
Query Parameters
page?integer
Page number (1-based).
page_size?integer
Number of items per page. Values below the minimum or above the maximum are clamped to the nearest bound.
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/sessions"{
"data": [
{
"id": "3d3e8a1f-09a6-4f64-9d68-1d2f3a4b5c6d",
"created_at": "2026-06-10T09:15:21Z",
"input": {
"ticket_subject": "Charged twice for June invoice"
}
}
],
"pagination": {
"page": 1,
"page_size": 25,
"page_count": 1,
"total_count": 1
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized"
}
}{
"error": {
"code": "not_found",
"message": "Not Found"
}
}