box-open-sdk 0.1.1

Generated Box API SDK for Rust (community, unofficial).
Documentation
<!-- Generated by box-gantry. DO NOT EDIT. -->
# IntegrationMappingsManager

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

## list_slack

`GET /integration_mappings/slack`

| Parameter | In | Type | Required |
|---|---|---|---|
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
| `partner_item_type` | query | `IntegrationMappingPartnerItemSlackType` | no |
| `partner_item_id` | query | `String` | no |
| `box_item_id` | query | `String` | no |
| `box_item_type` | query | `FolderType` | no |
| `is_manually_created` | query | `bool` | no |

**Returns:** `IntegrationMappings`

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

## create_slack

`POST /integration_mappings/slack`

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

**Returns:** `IntegrationMapping`

## update_slack

`PUT /integration_mappings/slack/{integration_mapping_id}`

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

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

**Returns:** `IntegrationMapping`

## delete_slack

`DELETE /integration_mappings/slack/{integration_mapping_id}`

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

**Returns:** no content

## list_teams

`GET /integration_mappings/teams`

| Parameter | In | Type | Required |
|---|---|---|---|
| `partner_item_type` | query | `IntegrationMappingPartnerItemTeamsType` | no |
| `partner_item_id` | query | `String` | no |
| `box_item_id` | query | `String` | no |
| `box_item_type` | query | `FolderType` | no |

**Returns:** `IntegrationMappingsTeams`

## create_teams

`POST /integration_mappings/teams`

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

**Returns:** `IntegrationMappingTeams`

## update_team

`PUT /integration_mappings/teams/{integration_mapping_id}`

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

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

**Returns:** `IntegrationMappingTeams`

## delete_team

`DELETE /integration_mappings/teams/{integration_mapping_id}`

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

**Returns:** no content