Function: deleteFeatureFlagById()
ts
function deleteFeatureFlagById(client, parameters): Promise<void>;Defined in: src/agile/api/featureFlags.ts:92
Delete the Feature Flag data currently stored for the given ID.
Deletion is performed asynchronously. The getFeatureFlagById operation can be used to confirm that data has been deleted successfully (if needed).
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { featureFlagId: string; } | - |
parameters.featureFlagId | string | The ID of the Feature Flag to delete. |
Returns
Promise<void>