curl --request GET \
--url https://api.backside.app/api/v1/tasks/{id} \
--header 'Authorization: Bearer <token>'Without as_of: returns the current-state shape (TaskResponse with
labels and counts).
With as_of (RFC 3339): returns the historical snapshot of the
task’s main row — TaskAsOfResponse. Tasks are unitemporal, so
as_of is the valid-time selector; any valid_at the caller passes
is format-validated for consistency but ignored for data narrowing.
Retention enforcement: 410 Gone when as_of falls before the
tenant’s retention cutoff.
curl --request GET \
--url https://api.backside.app/api/v1/tasks/{id} \
--header 'Authorization: Bearer <token>'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Task ID
Valid-time as-of (RFC 3339). Tasks are unitemporal.
Ignored for tasks (unitemporal). Present for handler symmetry.
Task (current-state) or historical snapshot
Was this page helpful?