Replay calendar deltas detected by the watcher (CAL-6)
GET
/api/v1/calendar/outbox
const url = 'http://localhost:8080/api/v1/calendar/outbox';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8080/api/v1/calendar/outboxReturns one entry per detected change (NEW_ANIME, NEXT_EPISODE_ADVANCED, STATUS_CHANGED, …) since the supplied watermark. Pull pattern: consumers pass back the last detectedAt they processed. Default watermark = 1970-01-01 (read everything). Capped at 1000 events.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” since
string
Exclusive lower bound on detectedAt (ISO-8601 local datetime; default 1970-01-01T00:00:00)
limit
integer format: int32
Cap returned events (1..1000)
Responses
Section titled “ Responses ”OK
Media type */*
object
key
additional properties