PaginationMetadata

  • limit
    Type: integer Format: int32

    Gets or sets the limit used in the original request.

  • links
    Type: object · Links

    Navigation links in the paginated response.

    • next
      Type: string Format: uri

      Gets or sets the URI link to the next page.

    • previous
      Type: string Format: uri

      Gets or sets the URI link to the previous page.

    • self
      Type: string Format: uri

      Gets or sets the URI link to the current page.

  • offset
    Type: integer Format: int32

    Gets or sets the offset used in the original request.

  • total
    Type: integer Format: int32

    Gets or sets the total number of records in the results set.

Examples
{
  "links": {
    "self": "https://api.openmarkets.com.au/v1/accounts/submissions?limit=10&offset=0",
    "next": "https://api.openmarkets.com.au/v1/accounts/submissions?limit=10&offset=10",
    "previous": null
  },
  "limit": 10,
  "offset": 0,
  "total": 17
}