2020-01-01 22:37:59 +01:00
|
|
|
---
|
|
|
|
title: List
|
|
|
|
description: Represents a list of some users that the authenticated user follows.
|
|
|
|
menu:
|
|
|
|
docs:
|
|
|
|
parent: entities
|
|
|
|
---
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
{
|
|
|
|
"id": "12249",
|
|
|
|
"title": "Friends"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Required attributes
|
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
### `id` {#id}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
**Description:** The internal database ID of the list.\
|
|
|
|
**Type:** String \(cast from an integer, but not guaranteed to be a number\)\
|
2020-12-27 07:03:55 +01:00
|
|
|
**Version history:**\
|
|
|
|
2.1.0 - added
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
### `title` {#title}
|
2020-01-01 22:37:59 +01:00
|
|
|
|
2020-01-12 14:11:56 +01:00
|
|
|
**Description:** The user-defined title of the list.\
|
|
|
|
**Type:** String\
|
2020-12-27 07:03:55 +01:00
|
|
|
**Version history:**\
|
|
|
|
2.1.0 - added
|
|
|
|
|
|
|
|
### `replies_policy` {#replies_policy}
|
|
|
|
|
|
|
|
**Description:** The user-defined title of the list.\
|
|
|
|
**Type:** String (Enumerable oneOf)\
|
|
|
|
`followed` = Show replies to any followed user\
|
|
|
|
`list` = Show replies to members of the list\
|
|
|
|
`none` = Show replies to no one\
|
|
|
|
**Version history:**\
|
|
|
|
3.3.0 - added
|
2020-01-01 22:37:59 +01:00
|
|
|
|
|
|
|
## See also
|
|
|
|
|
|
|
|
{{< page-ref page="methods/timelines/lists.md" >}}
|
|
|
|
|
|
|
|
{{< caption-link url="https://github.com/tootsuite/mastodon/blob/master/app/serializers/rest/list_serializer.rb" caption="app/serializers/rest/list\_serializer.rb" >}}
|
|
|
|
|
|
|
|
|
|
|
|
|