コンテンツにスキップ

/v0/timeline/conversations

GET
/v0/timeline/conversations
curl --request GET \
--url http://localhost:3000/v0/timeline/conversations

OK

Media type application/json
Array<object>
object
account
required
object
id
required

Assignee account ID

string
name
required

Assignee account name

string
nickname
required

Assignee nickname

string
avatar
required

Avatar URL

string format: uri
updatedAt
required

Last message sent

string format: date-time
Example
[
{
"account": {
"id": "30984308495",
"name": "@john@example.com",
"nickname": "John Doe",
"avatar": "https://example.com/avatar.png"
},
"updatedAt": "2023-09-10T00:00:00.000Z"
}
]

Internal error

Media type application/json
object
error
required

Internal server error

string
Allowed values: INTERNAL_ERROR
Example
{
"error": "INTERNAL_ERROR"
}