POST
request to update the details of an existing item group. Users can modify the item group’s name and assign a parent group by providing the required details in the request body.ApiKey: ********************
{
"name": "Laptop",
"parent_id": 1
}
curl --location --request POST 'https://app.hisabkitab.co/third-party/item-groups/1' \
--header 'Content-Type: application/json' \
--header 'ApiKey;' \
--data-raw '{
"name": "Laptop",
"parent_id": 1
}'
{
"data": {
"id": 2,
"name": "Fabric",
"parent_id": 1,
"parent_group": "MASPICES",
"is_default_group": 0
},
"success": true,
"message": "Group Updated Successfully"
}