remote-config-update-user-identifier-criteria
Modify user identifier criteria in remote configurations to refine targeting across production and development environments using Hackle's $deviceId, $userId, or custom criteria.
Instructions
Updates remote config's user identifier criteria. 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": {
"userIdentifierCriteria": {
"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": [
"userIdentifierCriteria"
],
"type": "object"
},
"remoteConfigId": {
"description": "Remote config's id.",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"remoteConfigId",
"body"
],
"type": "object"
}