curl --request GET \
--url http://localhost:3000/projects/{projectId}/analytics/distribution \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": [
{
"flagId": "<string>",
"flagKey": "<string>",
"flagName": "<string>",
"evaluations": 123,
"percentage": 123
}
]
}Get per-flag evaluation share for the project.
curl --request GET \
--url http://localhost:3000/projects/{projectId}/analytics/distribution \
--header 'Authorization: Bearer <token>'{
"statusCode": 123,
"message": "OK",
"data": [
{
"flagId": "<string>",
"flagKey": "<string>",
"flagName": "<string>",
"evaluations": 123,
"percentage": 123
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
24h