List purchase products

The listPurchaseProducts operation lists all of the purchased catalog items associated with the specified purchase ID. The search result is returned as a list of STAC items (GeoJSON features).

This endpoint does not support pagination.

Example

Request

Enter the following curl command, remembering to replace the ${VARNAME} variables with the appropriate values:

curl -v -G "${API_BASE_URL}/api/catalog/v2/purchases/${PURCHASE_ID}/products" \
--header "Accept: application/json, application/problem+json" \
--header "Authorization: Bearer ${API_ACCESS_TOKEN}"

Response

On success, returns a 200 status code and a JSON object containing an array of catalog items.

{
    "data": [
        ...
    ]
}