Skip to content

Commit

Permalink
Api documentation on the new format #102
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarconr committed Feb 20, 2020
1 parent 0cb45f1 commit 0e8dab7
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions packages/unleash-api/notes/api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# API

## Fetch features:

This endpoint is the one all clients should use to fetch all available feature-toggles
from the unleash-server. The response returns all active-toggles and the active
strategy configuration. A feature-toggle will have at-least one strategy. A
strategy will have a 'name' and 'parameters'.

GET: http://unleash.host.com/features

```json
{
"features": [
{
"name": "Feature.A",
"description": "lorem ipsum",
"enabled": false,
"strategies": [
{
"name": "default",
"parameters": {}
}
],
"strategy": "default",
"parameters": {}
},
{
"name": "Feature.B",
"description": "lorem ipsum",
"enabled": true,
"strategies": [
{
"name": "ActiveForUserWithId",
"parameters": {
"userIdList": "123,221,998"
}
},
{
"name": "GradualRolloutRandom",
"parameters": {
"percentage": "10"
}
}
],
"strategy": "ActiveForUserWithId",
"parameters": {
"userIdList": "123,221,998"
}
}
]
}
```
**Important:**

_strategy_ and _paramters_ are depercated fields and will go away in the next version. They are kept for backward compability with older unleash-clients.


## Fetch a feature

GET: http://unleash.host.com/features/[featureName]

```json
{
"name": "Feature.A",
"description": "lorem ipsum..",
"enabled": false,
"strategies": [
{
"name": "default",
"parameters": {}
}
],
"strategy": "default",
"parameters": {}
}
```


0 comments on commit 0e8dab7

Please sign in to comment.