Getting a subscription's pending actions

Learn how to get a subscription's pending actions.

Our Digital River Commerce API provides the capability to look into the pending actions for a specific subscription. This document explains how to effectively use the API to retrieve such information, ensuring the status of your subscriptions is up to date.

To retrieve a subscription's pending actions in Digital River's API, perform a GET /v1/subscriptions/{subscriptionId}/pending-actions request and include the {subscriptionId} you want to query. Ensure you have the necessary authorization header included in your request.

Here's an example using cURL:

curl --location --request GET 'https://api.digitalriver.com/v1/subscriptions/{subscriptionId}/pending-actions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic {Your_Authorization}' \

The server responds with a 202 Accepted status code, indicating your request to retrieve the pending actions for the specified subscription ID, was accepted and is being processed.

Last updated