Loading...
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": "2024-11-15T10:26:40.634Z", "terminationDate": "2024-11-15T10:26:40.634Z", "autoRenew": false, "commitmentDate": "2024-11-15T10:26:40.634Z", "lines": [] } ] }