{ "opencollection": "1.0.0", "info": { "name": "GitLab access_requests features API", "version": "v4" }, "items": [ { "info": { "name": "features", "type": "folder" }, "items": [ { "info": { "name": "List all features", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v4/features" }, "docs": "Get a list of all persisted features, with its gate values." }, { "info": { "name": "List all feature definitions", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v4/features/definitions" }, "docs": "Get a list of all feature definitions." }, { "info": { "name": "Set or create a feature", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v4/features/:name", "params": [ { "name": "name", "value": "", "type": "path" } ] }, "docs": "Set a feature's gate value. If a feature with the given name doesn't exist yet, it's created. The value can be a boolean, or an integer to indicate percentage of time." }, { "info": { "name": "Delete a feature", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v4/features/:name", "params": [ { "name": "name", "value": "", "type": "path" } ] }, "docs": "Removes a feature gate. Response is equal when the gate exists, or doesn't." } ] } ], "bundled": true }