Get a list of subscriptions in all agreements.
Success
const response = await fetch('https://api.platform.softwareone.com/public/v1/commerce/subscriptions', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "id": "text", "href": "text", "name": "text", "startDate": "2025-01-23T13:27:52.515Z", "terminationDate": "2025-01-23T13:27:52.515Z", "autoRenew": false, "commitmentDate": "2025-01-23T13:27:52.515Z", "lines": [] } ] }