Skip to main content
GET
/
v1
/
notifications
/
subscriptions
List all notification subscriptions
curl --request GET \
  --url https://api-sandbox.circle.com/v1/notifications/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "b8627ae8-732b-4d25-b947-1df8f4007a29",
      "endpoint": "https://example.org/handler/for/notifications",
      "subscriptionDetails": [
        {
          "url": "arn:aws:sns:us-east-1:<...>:fcb4a2c9-9c4f-4706-b312-6b22650f5d17",
          "status": "confirmed"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Successfully retrieved a list of notification subscriptions.

data
object[]