Options

Options

Options

Enable or disable Options (Feature Flags)

HTTP REQUEST: POST

This API enables or disables configuration Options.

POST/api/1.0/org/{orgId}/properties/features
URI PARAMETERS
NameTypeDescription
orgIdstringThe Organization ID (UUID) for which you are querying.
RESPONSES
CodeDescription
200Success.
401This error will occur if calling user does not have access right for the API.
404This error will occur if calling user does not have access right for the API.
500A server error occurred. Check the logs for more details.
503This error will occur if Design Center APIs are not enabled.
Request Body
{
  "org_id": "default",
  "name": "name.of.feature.flag",
  "value": "true"
}
200 Response Body
{
  "status": {
    "code": 200,
    "i18n_message": "response.ok",
    "message": "ok"
  },
  "response": {
    "id": "abc123"
  },
  "time_to_process": "1.1 seconds"
}