/entries GET
Returns a list of entries for the default ‘context’ of a new session in Tempo. The basic gist here is that the entries you’ll get back from calling GET on /entries will just be for the last week, and just for the current user. Results are paginated.
Beta Change
This method will now provide only the listing of entries for the current user, ordered by
occurred_on DESC, created_at DESC. These are entries created by the user, or entries assigned to the user.This method had previously provided the entries visible in the default ‘context’, which is now the default result set seen on the reports screen (the default report), see GET /reports.
Parameters
- per_page
Number of entries per page, defaults to 10.
- page
Offset of paginated entries, defaults to 1.
- id[]
-
This parameter allows you to request specific entries by ID. Repeat parameter once for each ID, like so:
/entries/?id[]=1&id[]=2&id[]=3
