{ "opencollection": "1.0.0", "info": { "name": "HubSpot Analytics Events Access Tokens Application Feature Flags API", "version": "3.0.0" }, "items": [ { "info": { "name": "Application Feature Flags", "type": "folder" }, "items": [ { "info": { "name": "Hubspot Retrieve a Feature Flag Configuration", "type": "http" }, "http": { "method": "GET", "url": "https://api.hubapi.com/feature-flags/v3/:appId/flags/:flagName", "params": [ { "name": "appId", "value": "12345678", "type": "path", "description": "The unique identifier for the HubSpot application" }, { "name": "flagName", "value": "new-dashboard-feature", "type": "path", "description": "The name of the feature flag" } ] }, "docs": "Retrieves the configuration for a specific feature flag associated with an application.\nReturns the flag name, default state, and any override state configured.\n" }, { "info": { "name": "Hubspot Create or Update a Feature Flag", "type": "http" }, "http": { "method": "PUT", "url": "https://api.hubapi.com/feature-flags/v3/:appId/flags/:flagName", "params": [ { "name": "appId", "value": "12345678", "type": "path", "description": "The unique identifier for the HubSpot application" }, { "name": "flagName", "value": "new-dashboard-feature", "type": "path", "description": "The name of the feature flag" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates or updates a feature flag configuration for an application.\nSet the default state that will apply to all portals unless overridden.\n" }, { "info": { "name": "Hubspot Delete a Feature Flag", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.hubapi.com/feature-flags/v3/:appId/flags/:flagName", "params": [ { "name": "appId", "value": "12345678", "type": "path", "description": "The unique identifier for the HubSpot application" }, { "name": "flagName", "value": "new-dashboard-feature", "type": "path", "description": "The name of the feature flag" } ] }, "docs": "Deletes a feature flag from an application.\nThis will also remove all portal-level flag state overrides associated with this flag.\n" } ] } ], "bundled": true }