box-open-sdk 0.4.1

Box API client for Rust (open source, community, punk rock) — typed models, async managers, and a reqwest runtime with retry, backoff, and token refresh.
Documentation
<!-- Generated by box-gantry. DO NOT EDIT. -->
# SignRequestsManager

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

## cancel

`POST /sign_requests/{sign_request_id}/cancel`

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

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

**Returns:** `SignRequest`

**Example**

```rust
let result = client.sign_requests.cancel("SIGN_REQUEST_ID".to_string(), schemas::SignRequestCancelRequest { /* … */ }).await?;
```

## resend

`POST /sign_requests/{sign_request_id}/resend`

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

**Returns:** no content

**Example**

```rust
client.sign_requests.resend("SIGN_REQUEST_ID".to_string()).await?;
```

## get

`GET /sign_requests/{sign_request_id}`

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

**Returns:** `SignRequest`

**Example**

```rust
let result = client.sign_requests.get("SIGN_REQUEST_ID".to_string()).await?;
```

## list

`GET /sign_requests`

| Parameter | In | Type | Required |
|---|---|---|---|
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
| `senders` | query | `Vec<String>` | no |
| `shared_requests` | query | `bool` | no |

**Returns:** `SignRequests`

**Example**

```rust
let mut pages = client.sign_requests.list(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).

## create

`POST /sign_requests`

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

**Returns:** `SignRequest`

**Example**

```rust
let result = client.sign_requests.create(schemas::SignRequestCreateRequest { /* … */ }).await?;
```