box-open-sdk 0.2.0

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. -->
# WorkflowsManager

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

## list

`GET /workflows`

| Parameter | In | Type | Required |
|---|---|---|---|
| `folder_id` | query | `String` | yes |
| `trigger_type` | query | `String` | no |
| `limit` | query | `i64` | no |
| `marker` | query | `String` | no |

**Returns:** `Workflows`

**Example**

```rust
let mut pages = client.workflows.list("FOLDER_ID".to_string(), None);
while let Some(item) = pages.next().await {
    // use item
}
```

Paginated — `list(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).

## start

`POST /workflows/{workflow_id}/start`

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

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

**Returns:** no content

**Example**

```rust
client.workflows.start("WORKFLOW_ID".to_string(), schemas::WorkflowStartRequest { /* … */ }).await?;
```