# HubCollaborationsManager
Reach these methods through the `hub_collaborations` field on `client::Client`.
## list
`GET /hub_collaborations`
| `hub_id` | query | `String` | yes |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `HubCollaborations`
Paginated — `list(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).
## create
`POST /hub_collaborations`
**Request body** (`application/json`): `HubCollaborationCreateRequest`
**Returns:** `HubCollaboration`
## get
`GET /hub_collaborations/{hub_collaboration_id}`
| `hub_collaboration_id` | path | `String` | yes |
**Returns:** `HubCollaboration`
## update
`PUT /hub_collaborations/{hub_collaboration_id}`
| `hub_collaboration_id` | path | `String` | yes |
**Request body** (`application/json`): `HubCollaborationUpdateRequest`
**Returns:** `HubCollaboration`
## delete
`DELETE /hub_collaborations/{hub_collaboration_id}`
| `hub_collaboration_id` | path | `String` | yes |
**Returns:** no content