Settings
Get a setting
Get a setting
GET
/
settings
/
{setting_id_str}
curl --request GET \
--url https://api.togai.com/settings/{setting_id_str} \
--header 'Authorization: <authorization>'
{
"id": "UserSetting",
"value": "INR",
"entityType": "ORGANIZATION",
"entityId": "XlK5h64gND",
"namespace": "USER",
"name": "Settings Name",
"dataType": "STRING"
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
setting_id_str
string
requiredResponse
200 - application/json
id
string
requiredvalue
string
requiredentityType
string
requiredentityId
string
requirednamespace
string
requiredname
string
requireddataType
enum<string>
requiredAvailable options:
STRING
, NUMERIC
, JSON
, JSON_LOGIC
curl --request GET \
--url https://api.togai.com/settings/{setting_id_str} \
--header 'Authorization: <authorization>'
{
"id": "UserSetting",
"value": "INR",
"entityType": "ORGANIZATION",
"entityId": "XlK5h64gND",
"namespace": "USER",
"name": "Settings Name",
"dataType": "STRING"
}