curl --request POST \
--url https://api.getenso.ai/catalog/groups \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Software Licenses",
"description": "SaaS and perpetual software licenses"
}
'{
"status": "success",
"message": "Success",
"data": {}
}Create a new product/service group to organise SKUs under.
curl --request POST \
--url https://api.getenso.ai/catalog/groups \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Software Licenses",
"description": "SaaS and perpetual software licenses"
}
'{
"status": "success",
"message": "Success",
"data": {}
}JWT bearer token obtained from POST /auth/system-login using your client credentials.