GET
/
businesses
/
{business_id}
/
feature_flags
/
{feature_flag_name}
curl --request GET \
  --url https://api.pocketflows.com/businesses/{business_id}/feature_flags/{feature_flag_name} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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

feature_flag_name
string
required

The name of the feature flag

Response

200 - application/json

A FeatureFlag object

The response is of type object.