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
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"
},
...
]
}