Passer au contenu principal
GET
https://{tenantDomain}/api/v2
/
experimentation
/
feature-flags
List feature flags for the tenant.
curl --request GET \
  --url https://{tenantDomain}/api/v2/experimentation/feature-flags \
  --header 'Authorization: Bearer <token>'
{
  "feature_flags": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "auth0",
      "status": "draft",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "parameters": {}
    }
  ],
  "next": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://auth0.com/llms.txt

Use this file to discover all available pages before exploring further.

Autorisations

Authorization
string
header
requis

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Paramètres de requête

from
string

Optional Id from which to start selection.

take
integer

Number of feature flags to return per page. Defaults to 25, maximum 50.

Plage requise: 1 <= x <= 50
type
enum<string>

Filter by type. Exact match.

Options disponibles:
auth0,
self
status
enum<string>

Filter by status. Exact match.

Options disponibles:
draft,
active,
archived

Réponse

Feature flags successfully retrieved.

feature_flags
object[]
requis
next
string

Checkpoint token for the next page. Omitted when there are no further results.