Mint
cURL
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" } ] } ] }
Retrieve a list of existing notification subscriptions with details.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved a list of notification subscriptions.
Show child attributes
Unique system generated identifier for the entity.
"b8627ae8-732b-4d25-b947-1df8f4007a29"
URL of the endpoint.
"https://example.org/handler/for/notifications"
List of subscriptions details for created subscriptions.
Identifier for created subscription.
"arn:aws:sns:us-east-1:<...>:fcb4a2c9-9c4f-4706-b312-6b22650f5d17"
Status of the subscription request.
confirmed
pending
deleted
Was this page helpful?