Pagination
The endpoints /parties, /frameworks and /dataspaces contain pagination attributes. These attributes work as follows.
Pagination request attributes
As a URL query parameter, the following can be provided:
pageInteger. Requests to return a specific page.sizeInteger. Sets the page size (number of items per page).
Example:
{url}/dataspaces?page=2&size=20requests the second page with a page size of 20.
Pagination response attributes
The response is structured as follows:
JSON body containing the base64 encoded JWT. Inside that (decoded) JWT:
A
partiesInfo,dataspacesInfoorframeworksInfoobject. Inside that info object:currentPageInteger. Number of the returned page.pageSizeInteger. Number of items per page.totalPagesInteger. Total number of pages available.totalCountInteger. Total number of items available.countInteger. Number of items returned in the current response (could be different then page size for the last page).
Last updated