1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/docs/api/admin/events-api.md

44 lines
746 B
Markdown
Raw Normal View History

---
id: events
title: /api/admin/events
---
2016-11-30 21:17:39 +01:00
# Events API
2017-06-28 10:17:48 +02:00
`GET: http://unleash.host.com/api/admin/events`
2016-11-30 21:17:39 +01:00
Used to fetch all changes in the unleash system.
Defined event types:
- feature-created
- feature-updated
- feature-archived
- feature-revived
- strategy-created
- strategy-deleted
**Response**
2018-11-22 11:20:28 +01:00
```json
2016-11-30 21:17:39 +01:00
{
2018-11-22 11:20:28 +01:00
"version": 1,
"events": [
{
"id": 454,
"type": "feature-updated",
"createdBy": "unknown",
"createdAt": "2016-08-24T11:22:01.354Z",
"data": {
"name": "eid.bankid.mobile",
"description": "",
"strategy": "default",
"enabled": true,
"parameters": {}
},
"diffs": [{ "kind": "E", "path": ["enabled"], "lhs": false, "rhs": true }]
}
]
2016-11-30 21:17:39 +01:00
}
2017-06-28 10:17:48 +02:00
```