curl --request GET \
--url https://api.orq.ai/v2/conversations \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"kind": "conversation",
"displayName": "<string>",
"createdAt": 123,
"updatedAt": 123,
"_id": "conv_01kbmyap3tva7ktd11dt2xesma",
"createdById": "<string>",
"updatedById": "<string>"
}
],
"has_more": true
}Retrieves a paginated list of conversations in your workspace. Conversations are returned sorted by creation date (newest first). Use pagination parameters to efficiently navigate through large collections.
curl --request GET \
--url https://api.orq.ai/v2/conversations \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"kind": "conversation",
"displayName": "<string>",
"createdAt": 123,
"updatedAt": 123,
"_id": "conv_01kbmyap3tva7ktd11dt2xesma",
"createdById": "<string>",
"updatedById": "<string>"
}
],
"has_more": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
1 < x <= 10010
A cursor for use in pagination. starting_after is a conversation ID that defines your place in the list.
A cursor for use in pagination. starting_after is a conversation ID that defines your place in the list.
"conv_01jj1hdhn79xas7a01wb3hysdb"
A cursor for use in pagination. ending_before is a conversation ID that defines your place in the list.
A cursor for use in pagination. ending_before is a conversation ID that defines your place in the list.
"conv_01jj1hdhn79xas7a01wb3hysdb"
Successfully retrieved the list of conversations. Returns a paginated response containing conversation objects.
list Show child attributes
Type discriminator indicating this is a conversation
conversation Display name for the conversation. Can be auto-generated or set by the user.
1 - 100Unix timestamp (in milliseconds) when the conversation was created
Unix timestamp (in milliseconds) when the conversation was last updated
Unique ULID (Universally Unique Lexicographically Sortable Identifier) for the conversation, prefixed with "conv_"
Optional identifier of the user or agent that created the conversation
Optional identifier of the user or agent that last updated the conversation
Was this page helpful?