From cbe1295e15ab97e384741eacd691bd8500f4f795 Mon Sep 17 00:00:00 2001 From: Levi Bard Date: Mon, 13 Nov 2023 18:21:51 +0100 Subject: [PATCH] Add `exclusive` parameter to list update documentation (#1327) --- content/en/methods/lists.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/content/en/methods/lists.md b/content/en/methods/lists.md index c5619d0f..4ae081ef 100644 --- a/content/en/methods/lists.md +++ b/content/en/methods/lists.md @@ -176,7 +176,8 @@ A sample list was created with a `title` of "test". { "id": "13585", "title": "test", - "replies_policy": "list" + "replies_policy": "list", + "exclusive": false } ``` @@ -245,6 +246,9 @@ title replies_policy : String. One of `followed`, `list`, or `none`. Defaults to `list`. +exclusive +: Boolean. Whether members of this list need to get removed from the “Home” feed + #### Response ##### 200: OK @@ -254,7 +258,8 @@ The `title` of list 13585 was successfully updated to "testing" { "id": "13585", "title": "test", - "replies_policy": "list" + "replies_policy": "list", + "exclusive": false } ```