Returns list of all subscriptions for the order.
Success
const response = await fetch('https://api.platform.softwareone.com/public/v1/commerce/orders/{orderId}/subscriptions', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "id": "text", "href": "text", "name": "text", "startDate": "2025-01-23T20:57:36.659Z", "terminationDate": "2025-01-23T20:57:36.659Z", "autoRenew": false, "commitmentDate": "2025-01-23T20:57:36.659Z", "lines": [] } ] }