Box Developer Documentation

A beta version of the new Box developer documentation site is launching soon! Updated Developer Guides, modern API Reference, and AI-powered search are on the way to help you build with Box faster. Stay tuned for more updates.

Delete Teams integration mappings

Delete Teams integration mappings

The DELETE integration_mappings_teams_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 Teams channel.

cURL
curl -X -L DELETE "https://api.box.com/2.0/integration_mappings/teams/342423" \
     -H "authorization: Bearer <ACCESS_TOKEN>"  \
     -d ''
Node/TypeScript v10
await userClient.integrationMappings.deleteTeamsIntegrationMappingById(
  integrationMappingId,
);
Python v10
user_client.integration_mappings.delete_teams_integration_mapping_by_id(
    integration_mapping_id
)
.NET v10
await userClient.IntegrationMappings.DeleteTeamsIntegrationMappingByIdAsync(integrationMappingId: integrationMappingId);
Swift v10
try await userClient.integrationMappings.deleteTeamsIntegrationMappingById(integrationMappingId: integrationMappingId)
Java v10
userClient.getIntegrationMappings().deleteTeamsIntegrationMappingById(integrationMappingId)