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

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

## get

`GET /files/{file_id}/metadata/global/boxSkillsCards`

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

**Returns:** `SkillCardsMetadata`

**Example**

```rust
let result = client.skills.get("FILE_ID".to_string()).await?;
```

## update

`PUT /files/{file_id}/metadata/global/boxSkillsCards`

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

**Request body** (`application/json-patch+json`): `Vec<UpdateSkillRequest>`

**Returns:** `SkillCardsMetadata`

**Example**

```rust
let result = client.skills.update("FILE_ID".to_string(), vec![]).await?;
```

## create

`POST /files/{file_id}/metadata/global/boxSkillsCards`

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

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

**Returns:** `SkillCardsMetadata`

**Example**

```rust
let result = client.skills.create("FILE_ID".to_string(), schemas::CreateSkillRequest { /* … */ }).await?;
```

## delete

`DELETE /files/{file_id}/metadata/global/boxSkillsCards`

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

**Returns:** no content

**Example**

```rust
client.skills.delete("FILE_ID".to_string()).await?;
```

## update_skill_invocation

`PUT /skill_invocations/{skill_id}`

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

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

**Returns:** no content

**Example**

```rust
client.skills.update_skill_invocation("SKILL_ID".to_string(), schemas::UpdateSkillInvocationRequest { /* … */ }).await?;
```