Skip to main content
GET
/
v1
/
notifications
/
webhooks
/
{webhook_id}
/
event-types
List event subscriptions for webhook
curl --request GET \
  --url https://api-m.sandbox.paypal.com/v1/notifications/webhooks/{webhook_id}/event-types \
  --header 'Authorization: Bearer <token>'
{
  "event_types": [
    {
      "name": "<string>",
      "description": "<string>",
      "status": "<string>",
      "resource_versions": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Oauth 2.0 authentication

Path Parameters

webhook_id
string
required

The ID of the webhook for which to list subscriptions.

Response

A successful request returns the HTTP 200 OK status code and a JSON response body that lists event subscriptions for a webhook.

A list of webhook events.

event_types
Event Type · object[]

An array of webhook events.

I