Box Developer Documentation

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 ''
TypeScript Gen
await userClient.integrationMappings.deleteTeamsIntegrationMappingById(
  integrationMappingId,
);
Python Gen
user_client.integration_mappings.delete_teams_integration_mapping_by_id(
    integration_mapping_id
)
.NET Gen
await userClient.IntegrationMappings.DeleteTeamsIntegrationMappingByIdAsync(integrationMappingId: integrationMappingId);
Swift Gen (Beta)
try await userClient.integrationMappings.deleteTeamsIntegrationMappingById(integrationMappingId: integrationMappingId)
Java Gen (Beta)
userClient.getIntegrationMappings().deleteTeamsIntegrationMappingById(integrationMappingId)