/v0/timeline/conversations
GET
/v0/timeline/conversations
const url = 'http://localhost:3000/v0/timeline/conversations';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/v0/timeline/conversationsResponses
Section titled “ Responses ”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
Example
{ "error": "INTERNAL_ERROR"}