debian-mirror-gitlab/doc/api/features.md

99 lines
2 KiB
Markdown
Raw Normal View History

2017-09-10 17:25:29 +05:30
# Features flags API
All methods require administrator authorization.
Notice that currently the API only supports boolean and percentage-of-time gate
values.
## List all features
Get a list of all persisted features, with its gate values.
```
GET /features
```
```bash
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/features
2017-09-10 17:25:29 +05:30
```
Example response:
```json
[
{
"name": "experimental_feature",
"state": "off",
"gates": [
{
"key": "boolean",
"value": false
}
]
},
{
"name": "new_library",
"state": "on",
"gates": [
{
"key": "boolean",
"value": true
}
]
}
]
```
## Set or create a feature
Set a feature's gate value. If a feature with the given name doesn't exist yet
it will be created. The value can be a boolean, or an integer to indicate
percentage of time.
```
POST /features/:name
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `name` | string | yes | Name of the feature to create or update |
| `value` | integer/string | yes | `true` or `false` to enable/disable, or an integer for percentage of time |
| `feature_group` | string | no | A Feature group name |
| `user` | string | no | A GitLab username |
2019-07-07 11:18:12 +05:30
| `group` | string | no | A GitLab group's path, for example 'gitlab-org' |
2019-03-02 22:35:43 +05:30
| `project` | string | no | A projects path, for example 'gitlab-org/gitlab-ce' |
2017-09-10 17:25:29 +05:30
2019-03-02 22:35:43 +05:30
Note that you can enable or disable a feature for a `feature_group`, a `user`,
2019-07-07 11:18:12 +05:30
a `group`, and a `project` in a single API call.
2017-09-10 17:25:29 +05:30
```bash
2019-02-15 15:39:39 +05:30
curl --data "value=30" --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/features/new_library
2017-09-10 17:25:29 +05:30
```
Example response:
```json
{
"name": "new_library",
"state": "conditional",
"gates": [
{
"key": "boolean",
"value": false
},
{
"key": "percentage_of_time",
"value": 30
}
]
}
```
2018-05-09 12:01:36 +05:30
## Delete a feature
Removes a feature gate. Response is equal when the gate exists, or doesn't.
```
DELETE /features/:name
```