|
POST :user/lists/:id |
This method is deprecated and has been replaced by POST lists/update. Please update your applications with the new endpoint.
Updates the specified list. |
|
POST :user/lists |
This method is deprecated and has been replaced by POST lists/create. Please update your applications with the new endpoint.
Creates a new list for the authenticated user. Accounts are limited to 20 lists. |
|
POST :user/:list_id/subscribers |
This method is deprecated and has been replaced by POST lists/subscribers/create. Please update your applications with the new endpoint.
Make the authenticated user follow the specified list. |
|
POST :user/:list_id/members |
This method is deprecated and has been replaced by POST lists/members/create. Please update your applications with the new endpoint.
Add a member to a list. The authenticated user must own the list to be able to add members to it. Lists are limited to having 500 members. |
|
POST :user/lists/:list_id/create_all |
This method is deprecated and has been replaced by POST lists/members/create_all. Please update your applications with the new endpoint.
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add... |
|
GET :user/lists/memberships |
This method is deprecated and has been replaced by GET lists/memberships. Please update your applications with the new endpoint.
List the lists the specified user has been added to. |
|
GET :user/lists/:id/statuses |
This method is deprecated and has been replaced by GET lists/statuses. Please update your applications with the new endpoint.
Show the tweet timeline for members of the specified list. |
|
GET :user/lists/:id |
This method is deprecated and has been replaced by GET lists/show. Please update your applications with the new endpoint.
Show the specified list. Private lists will only be shown if the authenticated user owns the specified list. |
|
GET :user/lists |
This method is deprecated and has been replaced by GET lists. Please update your applications with the new endpoint.
List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user who's lists are being returned. |
|
GET :user/:list_id/subscribers/:id |
This method is deprecated and has been replaced by GET lists/subscribers/show. Please update your applications with the new endpoint.
Check if a user is a subscriber of the specified list. |
|
GET :user/:list_id/subscribers |
This method is deprecated and has been replaced by GET lists/subscribers. Please update your applications with the new endpoint.
Returns the subscribers of the specified list. |
|
GET :user/:list_id/members/:id |
This method is deprecated and has been replaced by GET lists/members/show. Please update your applications with the new endpoint.
Check if a user is a member of the specified list. Returns the user indicated by :id if the user is a member of the list. |
|
GET :user/:list_id/members |
This method is deprecated and has been replaced by GET lists/members. Please update your applications with the new endpoint.
Returns the members of the specified list. |
|
DELETE :user/lists/:id |
This method is deprecated and has been replaced by POST lists/destroy. Please update your applications with the new endpoint.
Deletes the specified list. Must be owned by the authenticated user.
Usage Note: clients who can not issue DELETE requests can POST with the added parameter _method=DELETE. |
|
DELETE :user/:list_id/subscribers |
This method is deprecated and has been replaced by POST lists/subscribers/destroy. Please update your applications with the new endpoint.
Unsubscribes the authenticated user form the specified list.
Usage Note: clients who can not issue DELETE requests can POST with the added parameter _method=... |