Loading...
Lists all parameter groups for a given product based on filter criteria.
Success
const response = await fetch('https://api.platform.softwareone.com/public/v1/products/{productId}/parameter-groups', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "id": "text", "href": "text", "name": "text", "label": "text", "description": "text", "isDefault": false } ] }