We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Contributes to #4278.
Evolve the API schemas as per the following:
POST /api/v1/identities
#/definitions/IdentifyWithTraits
{ "required": [ "identifier" ], "type": "object", "properties": { "identifier": { "title": "Identifier", + "x-nullable": true, "type": "string", - "minLength": 1 }, "traits": { "type": "array", "items": { "$ref": "#/definitions/TraitSerializerBasic" } }, "flags": { "type": "array", "items": { "$ref": "#/definitions/SDKFeatureState" }, "readOnly": true }, "transient": { "type": "boolean", "x-nullable": true } } }
If null/empty identifier provided, assume "transient": true. Supply identifier="" to the evaluation engine.
identifier=""
The text was updated successfully, but these errors were encountered:
khvn26
Successfully merging a pull request may close this issue.
Contributes to #4278.
Evolve the API schemas as per the following:
POST /api/v1/identities
(docs):#/definitions/IdentifyWithTraits
If null/empty identifier provided, assume "transient": true. Supply
identifier=""
to the evaluation engine.The text was updated successfully, but these errors were encountered: