archiveFeatureFlag
Deactivate a feature flag in Bucketeer by archiving it with a required comment for audit trail purposes.
Instructions
Archive a feature flag (make it inactive)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment | Yes | Comment for the archive action (required for audit trail) | |
| environmentId | No | Environment ID (uses default if not provided) | |
| id | Yes | The ID of the feature flag to archive |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Comment for the archive action (required for audit trail)",
"type": "string"
},
"environmentId": {
"description": "Environment ID (uses default if not provided)",
"type": "string"
},
"id": {
"description": "The ID of the feature flag to archive",
"type": "string"
}
},
"required": [
"id",
"comment"
],
"type": "object"
}