# HubDocumentManager
Reach these methods through the `hub_document` field on `client::Client`.
## list_pages
`GET /hub_document_pages`
| `hub_id` | query | `String` | yes |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `HubDocumentPages`
Paginated — `list_pages(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).
## list_blocks
`GET /hub_document_blocks`
| `hub_id` | query | `String` | yes |
| `page_id` | query | `String` | yes |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `HubDocumentBlocks`
Paginated — `list_blocks(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).