GET /teams/:teamId/activity
Description
Get the team activity feed.
Resource URL
https://api.playlyfe.com/teams/:teamId/activity
Method
GET
Scopes
player, game, debug
Parameters
| Location | Parameter Name | Default Value | Description |
|---|---|---|---|
| Query | start | 0 | Earliest possible activity timestamp |
| Query | end | 10 | Latest possible activity timestamp |
Example
Request
GET https://api.playlyfe.com/teams/hackers/activity
Response
[
{
"event": "invite:accept",
"timestamp": "2014-03-02T12:34:34.474Z",
"actor": {
"id": "morpheus",
"alias": "Morpheus"
},
"inviter": {
"id": "neo",
"alias": "Neo"
},
"roles": {
"Member": true
},
"id": "02aefca0-a207-11e3-b0b2-6be1ca7db7ba"
}
]