GET
/
businesses
/
{business_id}
/
feature_flags
/
statuses
curl --request GET \
  --url https://api.pocketflows.com/businesses/{business_id}/feature_flags/statuses \
  --header 'Authorization: Basic <encoded-value>'
{
  "feature_flags": [
    {
      "feature_flag_name": "<string>",
      "enabled": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

business_id
string
required

The ID of the business

Query Parameters

feature_flag_names
string[]
required

The names of the feature flags to check

Response

200 - application/json

A dictionary with a feature_flags property which is an array of FeatureFlag objects

The response is of type object.