remote-config-create
Generate an empty remote configuration to manage feature targeting and values in Hackle. Specify key, data type, and user criteria for precise control over A/B testing parameters.
Instructions
Creates an empty remote config. It is recommended to update an existing RC first if there is an associated RC with the one you want to create since the total number of RC is limited.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"dataType": {
"description": "Type of Remote Config's value.",
"enum": [
"STRING",
"JSON",
"NUMBER",
"BOOLEAN"
],
"type": "string"
},
"description": {
"type": "string"
},
"key": {
"description": "Remote config's name.",
"minLength": 1,
"type": "string"
},
"userIdentifierCriteria": {
"default": "$deviceId",
"description": "User identifier criteria for targeting. You can use criteria provided by Hackle($deviceId, $userId) or your own criteria created at Hackle dashboard website.",
"type": "string"
}
},
"required": [
"key",
"dataType"
],
"type": "object"
}
},
"required": [
"body"
],
"type": "object"
}