Kinde · Example Payload

Kinde Create Feature Flag Example

AuthenticationAuthorizationCustomer IdentityIdentity ManagementOAuthOpenID ConnectSingle Sign-OnMulti-Factor AuthenticationRole-Based Access ControlFeature FlagsBillingB2BSaaSDeveloper Platform

Kinde Create Feature Flag Example is an example object payload from Kinde, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://acme.kinde.com/api/v1/feature_flags",
    "headers": {
      "Authorization": "Bearer <KINDE_M2M_ACCESS_TOKEN>",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "Beta Dashboard",
      "description": "Enable the new analytics dashboard.",
      "key": "beta_dashboard",
      "type": "boolean",
      "allow_override_level": "org",
      "default_value": "false"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "feature_flag": {
        "key": "beta_dashboard",
        "name": "Beta Dashboard",
        "type": "boolean",
        "value": false
      }
    }
  }
}