1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!-- 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