List conversations
Lists the caller's conversations, most recently created first by default.
Organization or project Access Key created in the Dynamiq console. Used for deployed-app (Runs API), AI Gateway, traces collector, and management API requests. Send as Authorization: Bearer <access-key>.
In: header
Query Parameters
Filter by app UUID.
Filter by conversation model UUID.
Filter by organization UUID.
Page number (1-based).
Number of items per page.
Comma-separated sort fields. Prefix a field with - for descending order, e.g. sort=-started_at.
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/conversations"{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"title": "string",
"app_id": "affd1d10-9538-4fc8-9e0b-4594a28c1335",
"model_id": "f8ff2fb8-4acc-4e48-bd83-cbdac23e1224",
"user_id": "string",
"org_id": "a40f5d1f-d889-42e9-94ea-b9b33585fc6b",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"sandbox_id": "string",
"app": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"description": "string"
},
"model": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"slug": "string",
"provider": "string"
}
}
],
"pagination": {
"page": 0,
"page_size": 0,
"page_count": 0,
"total_count": 0
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized"
}
}Start linking an action connector account
Starts the hosted flow that links an action connector account for a `pipedream_account` requirement. Returns a connect URL, pre-targeted at the connector app declared in the requirement's spec (for example `gmail`); redirect the end user there to authorize their account. Once the account is linked, the requirement becomes `completed`. The request has no body. Served on the management API; authenticate with a connect token.
Create a conversation
Creates a conversation bound either to a deployed app (`app_id`) or to a hosted conversation model (`model_id`). Exactly one of the two is required.