> ## Documentation Index
> Fetch the complete documentation index at: https://x-preview-mintlify-4abeecaa.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Manage List members: v1.1 to X API v2

> Migrate add, remove, and manage List member operations from Standard v1.1 lists/members endpoints to the X API v2 manage List members endpoints.

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

### Manage List members: Standard v1.1 compared to X API v2

If you have been working with the standard v1.1 [POST lists/members/create](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-create) and [POST lists/members/destroy](https://developer.x.com/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists/api-reference/post-lists-members-destroy) endpoints, the goal of this guide is to help you understand the similarities and differences between the standard v1.1 and X API v2 manage List members endpoints.

* **Similarities**
  * Authentication
* **Differences**
  * Endpoint URLs
  * App and Project requirements
  * HTTP methods
  * Rate limits
  * Request parameters

#### Similarities

**Authentication**

Both endpoint versions support [OAuth 1.0a User Context](https://developer.x.com/content/developer-twitter/resources/fundamentals/authentication). Therefore, if you were previously using one of the standard v1.1 manage List member endpoints, you can continue using the same authentication method if you migrate to the X API v2 version.

#### Differences

**Endpoint URLs**

* Standard v1.1 endpoints:
  * POST [https://api.x.com/1.1/lists/members/create.json](https://api.x.com/1.1/lists/members/create.json)
    (Adds a member to a specified List)
  * POST [https://api.x.com/1.1/lists/members/destroy.json](https://api.x.com/1.1/lists/members/destroy.json)
    (Removes a member from a specified List)
* X API v2 endpoint:
  * POST [https://api.x.com/2/lists/:id/members](https://api.x.com/2/lists/:id/members)
    (Adds a member to a specified List)

  * DELETE [https://api.x.com/2/lists/:id/members/:user\_id](https://api.x.com/2/lists/:id/members/:user_id)
    (Removes a member from a specified List)

**Rate limits**

| **Standard v1.1**                               | **X API v2**                                                                                                                                                                                      |
| :---------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| /1.1/lists/members/create.json<br /><br />none  | /2/lists/:id/members<br /><br />300 requests per 15-minute window with OAuth 1.0a User Context<br /><br />300 requests per 15-minute window with OAuth 2.0 Authorization Code with PKCE           |
| /1.1/lists/members/destroy.json<br /><br />none | /2/lists/:id/members/:user\_id<br /><br />300 requests per 15-minute window with OAuth 1.0a User Context<br /><br />300 requests per 15-minute window with OAuth 2.0 Authorization Code with PKCE |

**App and Project requirements**

The X API v2 endpoints require that you use credentials from a [developer App](/resources/fundamentals/developer-apps) that is associated with a [Project](/resources/fundamentals/developer-apps) when authenticating your requests. All X API v1.1 endpoints can use credentials from Apps or Apps related to a project.

**Request parameters**

The following standard v1.1 request parameters have equivalents in X API v2:

| **Standard v1.1**   | **X API v2**  |
| :------------------ | :------------ |
| list\_id            | id            |
| slug                | No equivalent |
| screen\_name        | No equivalent |
| owner\_screen\_name | No equivalent |
| owner\_id           | No equivalent |
