List delivery release schedules

GET/sales/deliveries/{delivery_id}/rules

Returns the release schedules applied by the delivery, with one entry for each product it grants access to.

Products without a release schedule are included with a null schedule_id, meaning their content is released without a schedule.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

delivery_id*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/sales/deliveries/string/rules"
{  "data": {    "entries": [      {        "links": {          "schedule": "string"        },        "product_id": "string",        "schedule_id": "string"      }    ],    "object": "delivery_rules"  }}