Get Setting

Retrieves the details of a setting.

Supply the unique setting ID to fetch it's details.

Request
path Parameters
id
required
string

ID of the Setting to fetch

Responses
200

Ok

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Internal Server Error

get/settings/{id}
Request samples
Response samples
application/json
{
  • "id": "string",
  • "defaultValue": null,
  • "name": "string",
  • "value": null,
  • "valueType": "boolean",
  • "scope": {
    },
  • "metadata": {
    },
  • "settingType": "feature_flag",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "createdBy": "string",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "updatedBy": "string",
  • "expiredAt": "2019-08-24T14:15:22Z",
  • "expired": true
}