Skip to content

Re-identifies the user with a new context, for example after login.

POST
/v1/client/identify
curl --request POST \
--url https://eval.featureflip.io/v1/client/identify \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "context": { "additionalProperty": "example" } }'

Re-evaluates all client-visible flags and returns the updated values. Also updates the context on any active SSE connections for this environment.

The evaluation request containing the new user context attributes.

object
context
required
object
key
additional properties
nullable
Examplegenerated
{
"context": {
"additionalProperty": "example"
}
}

Returns the re-evaluated results for all client-visible flags.

Media typeapplication/json
object
flags
required
object
key
additional properties
object
value
required
variation
required
string
nullable
reason
required
string
nullable
prerequisiteKey
string
nullable
Examplegenerated
{
"flags": {
"additionalProperty": {
"value": "example",
"variation": "example",
"reason": "example",
"prerequisiteKey": "example"
}
}
}

Client SDK key is missing or invalid.

Media typeapplication/json
object
type
string
nullable
title
string
nullable
status
integer format: int32
nullable
detail
string
nullable
instance
string
nullable
key
additional properties
Examplegenerated
{
"type": "example",
"title": "example",
"status": 1,
"detail": "example",
"instance": "example"
}

Flag configuration is temporarily unavailable; retry after the interval in Retry-After.