box-open-sdk 0.1.2

Community, unofficial Box API client for Rust — typed models, async managers, and a reqwest runtime with retry, backoff, and token refresh.
Documentation
<!-- Generated by box-gantry. DO NOT EDIT. -->
# TasksManager

Reach these methods through the `tasks` field on `client::Client`.

## list_file

`GET /files/{file_id}/tasks`

| Parameter | In | Type | Required |
|---|---|---|---|
| `file_id` | path | `String` | yes |

**Returns:** `Tasks`

## create

`POST /tasks`

**Request body** (`application/json`): `TaskCreateRequest`

**Returns:** `Task`

## get

`GET /tasks/{task_id}`

| Parameter | In | Type | Required |
|---|---|---|---|
| `task_id` | path | `String` | yes |

**Returns:** `Task`

## update

`PUT /tasks/{task_id}`

| Parameter | In | Type | Required |
|---|---|---|---|
| `task_id` | path | `String` | yes |

**Request body** (`application/json`): `TaskUpdateRequest`

**Returns:** `Task`

## delete

`DELETE /tasks/{task_id}`

| Parameter | In | Type | Required |
|---|---|---|---|
| `task_id` | path | `String` | yes |

**Returns:** no content