Skip to main content
DELETE
/
2
/
users
/
{id}
/
bookmarks
/
{tweet_id}
बुकमार्क हटाएँ
curl --request DELETE \
  --url https://api.x.com/2/users/{id}/bookmarks/{tweet_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "bookmarked": true
  },
  "errors": [
    {
      "title": "<string>",
      "type": "<string>",
      "detail": "<string>",
      "status": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

उस प्रमाणित स्रोत उपयोगकर्ता की ID, जिसका बुकमार्क हटाया जाना है। इस उपयोगकर्ता का विशिष्ट पहचानकर्ता। इसका मान प्रमाणित उपयोगकर्ता के समान होना चाहिए।

Example:

"2244994945"

tweet_id
string
required

उस पोस्ट की ID, जिसे स्रोत उपयोगकर्ता बुकमार्क्स से हटा रहा है। इस Tweet का विशिष्ट पहचानकर्ता। इसे स्ट्रिंग के रूप में लौटाया जाता है, ताकि उन भाषाओं और टूल्स में जटिलताओं से बचा जा सके जो बड़े पूर्णांकों को संभाल नहीं सकते।

Pattern: ^[0-9]{1,19}$
Example:

"1346889436626259968"

Response

अनुरोध सफल रहा है।

data
object
errors
object[]
Minimum array length: 1

IETF RFC 7807 (https://tools.ietf.org/html/rfc7807) में परिभाषित एक HTTP Problem Details ऑब्जेक्ट।