November 2018
Intermediate to advanced
404 pages
10h 16m
English
To get the collection of all journal entries, use the HTTP GET operation on the top-level /api/journal URI:
HTTP GET /api/journal
The preceding request will fetch all records from the collection. If the collection size is too large, you can add paging and filtering capabilities to the request. This can be accomplished using URI-encoded parameters by specifying the desired starting index and number of records:
HTTP GET /api/journal?start=40&size=20
Of course, the handler of this request needs to implement necessary logic to enable pagination and filtering features.
Read now
Unlock full access