Update Item Group
put
Authorizations
Path parameters
productIdstringRequired
idstringRequired
Body
namestring | nullableOptional
labelstring | nullableOptional
descriptionstring | nullableOptional
displayOrderinteger · int32 | nullableOptional
isMultipleChoiceboolean | nullableOptional
isRequiredboolean | nullableOptional
isDefaultboolean | nullableOptional
Responses
200
Success
application/json
400
Bad Request
application/json
404
Not Found
application/json
put
PUT /public/v1/products/{productId}/item-groups/{id} HTTP/1.1
Host: api.platform.softwareone.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 127
{
"name": "text",
"label": "text",
"description": "text",
"displayOrder": 1,
"isMultipleChoice": true,
"isRequired": true,
"isDefault": true
}
{
"id": "text",
"audit": {},
"$meta": {},
"href": "text",
"name": "text",
"label": "text",
"description": "text",
"displayOrder": 1,
"isDefault": true,
"isMultipleChoice": true,
"isRequired": true,
"itemCount": 1,
"product": {}
}
Was this helpful?