curl --request PUT \
--url https://api.getenso.ai/catalog/skus/{skuId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"attributes": "<unknown>"
}
'{
"status": "success",
"message": "Success",
"data": {}
}API to update a sku
curl --request PUT \
--url https://api.getenso.ai/catalog/skus/{skuId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"attributes": "<unknown>"
}
'{
"status": "success",
"message": "Success",
"data": {}
}AttributeService:updateAttributeJWT bearer token obtained from POST /auth/system-login using your client credentials.