---
title: "Page"
url: "https://developer-staging.agentsync.io/apis/identity/versions/1ed33a2c-924a-434c-9643-fbc531dea1b8/schemas/Page"
---

> Full API specification: https://developer-staging.agentsync.io/apis/identity/versions/1ed33a2c-924a-434c-9643-fbc531dea1b8.md

# Page

Page metadata for a token-based list response.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Identity API
  version: v1.275.8
servers:
  - url: https://api.sandbox.agentsync.io/id
    description: Sandbox server
  - url: https://api.agentsync.io/id
    description: Production server
components:
  schemas:
    Page:
      type: object
      description: Page metadata for a token-based list response.
      required:
        - size
        - nextToken
      properties:
        size:
          type: integer
          format: int32
          minimum: 0
          description: >
            Number of items actually returned in this response — equal to
            `items.length`. On an empty result this is `0`. This is NOT a copy
            of the request's `page_size` hint; clients holding the hint already
            know what they asked for.
          example: 25
        nextToken:
          type: string
          nullable: true
          description: >
            Opaque token to request the next page. `null` when this is the last
            page. Pass back as the `page_token` query parameter to resume.
          example: eyJ2IjoxLCJrIjp7InVwZGF0ZWRBdCI6IjIwMjYtMDUtMTlUMTI6MDA6MDBaIiwiaWQiOiIwMUhYWVoifX0
```
