Retrieving the tasks for a specific product

Lear how retrieve the tasks for a specific product.

The response to the following GET /v1/products/tasks?productId={productId or ERID} request retrieves the tasks for a specific productId or ERID.

The following example verifies the completion of a product for a specific productId.

curl --location --request GET 'https://api.digitalriver.com/v1/products/tasks?productId={productId}'
--header 'Authorization: Basic <API_key>' \
...

An ERID request requires the x-erid-as-pid=true header.

curl --location --request 
POST 'https://api.digitalriver.com/v1/products/tasks?productId={ERID}'
--header 'Authorization: Basic <API_key>' \
--header 'header x-erid-as-pid=true' \
...

To filter the results in the response, use query parameters.

Last updated