v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Projects

Get flag defaults for project

Get the flag defaults for a specific project.

get/api/v2/projects/{projectKey}/flag-defaults

Path parameters

projectKeystring string required

The project key

The project key

Response

Flag defaults response

_linksobject

The location and content type of related resources

keystring

A unique key for the flag default

tagsstring[]

A list of default tags for each flag

temporaryboolean

Whether the flag should be temporary by default

Example response

{
  "tags": [
    "tag-1",
    "tag-2"
  ],
  "temporary": true,
  "booleanDefaults": {
    "trueDisplayName": "True",
    "falseDisplayName": "False",
    "trueDescription": "serve true",
    "falseDescription": "serve false",
    "offVariation": 1
  }
}