Add the power of the Box AI API to your custom apps at Content Cloud Summit on May 15

Learn more and register!

List Slack Integration Mappings

List Slack Integration Mappings

Use the GET /integration_mappings/slack call to fetch and filter the mappings, both the ones created manually by the admin those created automatically by the integration.

cURL
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>" \
Node
const integrationMappings = await client.integrationMappings.getSlackIntegrationMappings();
console.log(`There are ${integrationMappings.entries.length} Slack integration mappings`);
TypeScript (Beta)
await userClient.integrationMappings.getSlackIntegrationMapping();
Python (Beta)
user_client.integration_mappings.get_slack_integration_mapping()
.NET (Beta)
await userClient.IntegrationMappings.GetSlackIntegrationMappingAsync();