Skip to main content

List Items of Circles

GET /circles/:id/conversations

Get all the conversations in a circle of a user.

Endpoint URL

 https://api.mixin.one/circles/:id/conversations

Authentication and options

Authorization
CIRCLES:READ
LimitationNo limitation

Parameters

limitpagination per page data limit, 500 by default, 500 at most.
offsetpagination start time, such as `2020-12-12T12:12:12.999999999Z`

Example request

curl -i -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" https://api.mixin.one/circles/a465ffdb-4441-4cb9-8b45-00cf79dfbc46/conversations
Response
{
"data": [
{
"circle_id": "a465ffdb-4441-4cb9-8b45-00cf79dfbc46",
"conversation_id": "e1524f3c-2e4f-411f-8a06-b5e1b1601308",
"created_at": "2018-05-29T09:31:04.202186212Z"
},
...
]
}