curl --request POST \
--url https://api.getenso.ai/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"key": "invoice_prefix",
"value": "INV-"
}
'{
"status": "success",
"message": "Success",
"data": {}
}Create a new organisation-level configuration setting.
curl --request POST \
--url https://api.getenso.ai/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"key": "invoice_prefix",
"value": "INV-"
}
'{
"status": "success",
"message": "Success",
"data": {}
}JWT bearer token obtained from POST /auth/system-login using your client credentials.