GET
/
2
/
account_activity
/
webhooks
/
{webhook_id}
/
subscriptions
/
all
/
list
curl --request GET \
  --url https://api.twitter.com/2/account_activity/webhooks/{webhook_id}/subscriptions/all/list \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "application_id": "<string>",
    "subscriptions": [
      {
        "user_id": "<string>"
      }
    ],
    "webhook_id": "<string>",
    "webhook_url": "<string>"
  },
  "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 webhook ID to pull subscriptions for.

Example:

"1146654567674912769"

Response

200
application/json

The request has succeeded.

The response is of type object.