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

Learn more and register!

Delete Slack Integration Mapping

Delete Slack Integration Mapping

The DELETE integration_mappings/slack/:integration_mapping_id call removes the mapping between the channel and the folder. A new mapping and a new folder in the default folder structure will be created when the next file is uploaded to the channel. Deleting the mapping does not delete the Box folder, or the Slack channel.

cURL
curl -X -L DELETE "https://api.box.com/2.0/integration_mappings/slack/512521" \
     -H "authorization: Bearer <ACCESS_TOKEN>"  \
     -d ''
Node
await client.integrationMappings.deleteSlackIntegrationMappingById({
	integration_mapping_id: 123456
});