Getting a subscription's pending actions

Learn how to get a subscription's pending actions.

The following GET /v1/subscriptions/{subscriptionId}/pending-actions returns all actions for a given subscription requested but not processed by the server yet (called pending actions of subscription). You need to provide the subscriptionId.

curl --location --request GET 'https://{host}//v1/subscriptions/{subscriptionId}/pending-actions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic ***' \

You will receive a 202 Accepted response.

Last updated