Skip to content

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

ParameterTypeDescription
clientClient-
parameters{ featureFlagId: string; }-
parameters.featureFlagIdstringThe ID of the Feature Flag to delete.

Returns

Promise<void>