Update Item Group

PUThttps://api.platform.softwareone.com/public/v1/products/{productId}/item-groups/{id}
Path parameters
productId*string
id*string
Body
namenullable string
labelnullable string
descriptionnullable string
displayOrdernullable integer (int32)
isMultipleChoicenullable boolean
isRequirednullable boolean
isDefaultnullable boolean
Response

Success

Body
idstring
auditobject
$metaobject
hrefstring
namestring
labelstring
descriptionstring
displayOrderinteger (int32)
isDefaultboolean
isMultipleChoiceboolean
isRequiredboolean
itemCountinteger (int32)
productobject
Request
const response = await fetch('https://api.platform.softwareone.com/public/v1/products/{productId}/item-groups/{id}', {
    method: 'PUT',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "id": "text",
  "href": "text",
  "name": "text",
  "label": "text",
  "description": "text",
  "displayOrder": 0,
  "isDefault": false,
  "isMultipleChoice": false,
  "isRequired": false,
  "itemCount": 0
}

#227:

Change request updated