- type (String) Response is filtered by the given type (for instance: notecard, bullet)
- id (String) Response is filtered by given IDs (comma separated list)
- since (Timestamp) Response includes only events that occurred after that timestamp
GET /projects/[:projectID]/events?id=[:entityID],[:entityID],type=[:entityType]&since=[:timestampOffset]
Status: 200 Ok
Content-Type:application/json; charset=utf-8
[
{
sequence: 1417552817,
command: 'create:highlight',
data: {
color: 'green',
id: '2424h123'
}
},
{
sequence: 1417552817,
command: 'update:highlight',
data: {
color: 'blue',
id: '2424h123'
}
}
]
POST /projects/[:projectID]/events
{
command: 'create:highlight',
data: {
color: 'green',
id: '2424h123'
}
}
Status: 201 Created Content-Type:application/json; charset=utf-8
{
sequence: 1417552817
}
👍
Few additions:
last_sequence
>since