PUT
/
2
/
webhooks
/
{webhook_id}
curl --request PUT \
  --url https://api.twitter.com/2/webhooks/{webhook_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "attempted": true
  },
  "errors": [
    {
      "detail": "<string>",
      "status": 123,
      "title": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhook_id
string
required

The ID of the webhook to check.

Example:

"1146654567674912769"

Response

200
application/json

The request has succeeded.

The response is of type object.