remote-config-update-description
Modify remote config descriptions in both production and development environments for proper documentation and consistency across Hackle API A/B test configurations.
Instructions
Updates remote config's description. The change will be applied to both production and development environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
remoteConfigId | Yes | Remote config's id. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
}
},
"required": [
"description"
],
"type": "object"
},
"remoteConfigId": {
"description": "Remote config's id.",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"remoteConfigId",
"body"
],
"type": "object"
}