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

# सूचियों का प्रबंधन

> सूचियाँ बनाएँ, अपडेट करें और हटाएँ

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 Lists endpoints आपको प्रमाणित उपयोगकर्ताओं की ओर से सूचियाँ बनाने, अपडेट करने और हटाने की अनुमति देते हैं.

<div id="overview">
  ## अवलोकन
</div>

<CardGroup cols={2}>
  <Card title="बनाएँ" icon="plus">
    नई सूची बनाएँ
  </Card>

  <Card title="अपडेट करें" icon="pen">
    सूची का नाम और विवरण अपडेट करें
  </Card>

  <Card title="हटाएँ" icon="trash">
    किसी सूची को हटाएँ
  </Card>
</CardGroup>

***

<div id="endpoints">
  ## एंडपॉइंट्स
</div>

| Method | Endpoint                                      | Description     |
| :----- | :-------------------------------------------- | :-------------- |
| POST   | [`/2/lists`](/hi/x-api/lists/create-list)     | नई सूची बनाएँ   |
| PUT    | [`/2/lists/:id`](/hi/x-api/lists/update-list) | सूची अपडेट करें |
| DELETE | [`/2/lists/:id`](/hi/x-api/lists/delete-list) | सूची हटाएँ      |

***

<div id="example-create-a-list">
  ## उदाहरण: सूची बनाएँ
</div>

```bash theme={null}
curl -X POST "https://api.x.com/2/lists" \
  -H "Authorization: Bearer $USER_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Tech News",
    "description": "My favorite tech journalists",
    "private": false
  }'
```

<div id="example-response">
  ## रिस्पॉन्स का उदाहरण
</div>

```json theme={null}
{
  "data": {
    "id": "1234567890",
    "name": "Tech News"
  }
}
```

***

<div id="getting-started">
  ## शुरुआत करें
</div>

<Note>
  **पूर्वापेक्षाएँ**

  * एक स्वीकृत [डेवलपर खाता](https://developer.x.com/en/portal/petition/essential/basic-info)
  * डेवलपर कंसोल में एक [Project और ऐप](/hi/resources/fundamentals/developer-apps)
  * [OAuth 2.0 PKCE](/hi/resources/fundamentals/authentication#oauth-2-0-authorization-code-flow-with-pkce-2) के माध्यम से उपयोगकर्ता एक्सेस टोकन
</Note>

<CardGroup cols={2}>
  <Card title="त्वरित शुरुआत" icon="rocket" href="/hi/x-api/lists/manage-lists/quickstart">
    अपनी पहली सूची बनाएँ
  </Card>

  <Card title="एकीकरण मार्गदर्शिका" icon="book" href="/hi/x-api/lists/manage-lists/integrate">
    मुख्य अवधारणाएँ और सर्वोत्तम प्रथाएँ
  </Card>

  <Card title="सूची सदस्य" icon="users" href="/hi/x-api/lists/list-members/introduction">
    सदस्यों को जोड़ें और हटाएँ
  </Card>

  <Card title="API संदर्भ" icon="code" href="/hi/x-api/lists/create-list">
    एंडपॉइंट का पूरा दस्तावेज़ीकरण
  </Card>
</CardGroup>
