Lists Slack integration mappings in a users' enterprise.
You need Admin or Co-Admin role to use this endpoint.
12345Box item ID, for which the mappings should be returned.
folderBox item type, for which the mappings should be returned.
Value is always folder
trueWhether the mapping has been manually created.
10001000The maximum number of items to return per page.
JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioViiDefines the position marker at which to begin returning results. This is used when paginating using marker-based pagination.
This requires usemarker to be set to true.
12345ID of the mapped item, for which the mapping should be returned.
channelMapped item type, for which the mapping should be returned.
Value is always channel
Returns a collection of integration mappings.
The server cannot or will not process the request due to an apparent client error.
Returns a not_found error if the integration mapping could not be found.
An unexpected client error.
curl -X -L GET "https://api.box.com/2.0/integration_mappings/slack?partner_item_id=C987654321&box_item_id=123456789" \
-H "authorization: Bearer <ACCESS_TOKEN>" \await userClient.integrationMappings.getSlackIntegrationMapping();user_client.integration_mappings.get_slack_integration_mapping()await userClient.IntegrationMappings.GetSlackIntegrationMappingAsync();try await userClient.integrationMappings.getSlackIntegrationMapping()userClient.getIntegrationMappings().getSlackIntegrationMapping()const integrationMappings = await client.integrationMappings.getSlackIntegrationMappings();
console.log(`There are ${integrationMappings.entries.length} Slack integration mappings`);{
"entries": [
{
"id": "12345",
"type": "integration_mapping",
"box_item": {
"etag": "1",
"id": "12345",
"type": "folder",
"name": "Contracts",
"sequence_id": "3"
},
"created_at": "2012-12-12T10:53:43-08:00",
"created_by": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
},
"integration_type": "slack",
"is_manually_created": true,
"modified_at": "2012-12-12T10:53:43-08:00",
"modified_by": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
},
"options": {
"is_access_management_disabled": true
},
"partner_item": {
"id": "C12378991223",
"slack_org_id": "E1234567",
"type": "channel"
}
}
],
"limit": 1000,
"next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii"
}