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
Part of #4278.
Evolve the API schemas as per the following:
GET /api/v1/identities
{ "get": { "operationId": "identify_user", "description": "", "parameters": [ { "name": "identifier", "in": "query", "required": true, "type": "string", "minLength": 1 + }, + { + "name": "transient", + "in": "query", + "required": false, + "type": "boolean" } ], "responses": { "200": { "description": "", "schema": { "$ref": "#/definitions/SDKIdentitiesResponse" } } }, "tags": [ "api" ] }
POST /api/v1/identities
#/definitions/IdentifyWithTraits
{ "required": [ "identifier" ], "type": "object", "properties": { "identifier": { "title": "Identifier", "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 } } }
#/definitions/TraitSerializerBasic
{ "required": [ "trait_key", "trait_value" ], "type": "object", "properties": { "id": { "title": "ID", "type": "integer", "readOnly": true }, "trait_key": { "title": "Trait key", "type": "string", "maxLength": 200, "minLength": 1 }, "trait_value": { "title": "Trait value", "type": "string", "x-nullable": true + }, + "transient": { + "type": "boolean", + "x-nullable": true } } }
When endpoint gets called:
The text was updated successfully, but these errors were encountered:
khvn26
Successfully merging a pull request may close this issue.
Part of #4278.
Evolve the API schemas as per the following:
GET /api/v1/identities
(docs):POST /api/v1/identities
(docs):#/definitions/IdentifyWithTraits
#/definitions/TraitSerializerBasic
When endpoint gets called:
The text was updated successfully, but these errors were encountered: