From a62810380e000f3bcffc040598bcffb8e1695d96 Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 21 Nov 2018 08:22:13 +0100 Subject: [PATCH] Add conversation timeline. Please check parameters as there is no information concerning default values. --- content/en/api/rest/timelines.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/content/en/api/rest/timelines.md b/content/en/api/rest/timelines.md index 60b49c9f..d397fddb 100644 --- a/content/en/api/rest/timelines.md +++ b/content/en/api/rest/timelines.md @@ -25,6 +25,26 @@ Returns array of [Status]({{< relref "entities.md#status" >}}) | `min_id` | Return results immediately newer than ID | Optional || | `limit` | Maximum number of results | Optional | 20 | + +## GET /api/v1/conversations + +Conversations for an account + +Returns array of [Conversation]({{< relref "entities.md#conversation" >}}) + +### Resource information + +{{< api_method_info auth="Yes" user="Yes" scope="read read:statuses" version="2.6.0" >}} + +### Parameters + +|Name|Description|Required|Default| +|----|-----------|:------:|:-----:| +| `max_id` | Return results older than ID | Optional || +| `since_id` | Return results newer than ID | Optional || +| `min_id` | Return results immediately newer than ID | Optional || +| `limit` | Maximum number of results | Optional | 20 | + ### Pagination {{< api_dynamic_pagination >}}