# HubItemsManager
Reach these methods through the `hub_items` field on `client::Client`.
## list
`GET /hub_items`
| `hub_id` | query | `String` | yes |
| `parent_id` | query | `String` | no |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `HubItems`
Paginated — `list(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).
## create_hub_manage_items
`POST /hubs/{hub_id}/manage_items`
| `hub_id` | path | `String` | yes |
**Request body** (`application/json`): `HubItemsManageRequest`
**Returns:** `HubItemsManageResponse`