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.
Deletes a Teams integration mapping. You need Admin or Co-Admin role to use this endpoint.
11235432An ID of an integration mapping.
Empty body in response.
Returns a not_found error if the integration mapping could not be found.
An unexpected client error.
curl -X -L DELETE "https://api.box.com/2.0/integration_mappings/teams/342423" \
-H "authorization: Bearer <ACCESS_TOKEN>" \
-d ''await userClient.integrationMappings.deleteTeamsIntegrationMappingById(
integrationMappingId,
);user_client.integration_mappings.delete_teams_integration_mapping_by_id(
integration_mapping_id
)await userClient.IntegrationMappings.DeleteTeamsIntegrationMappingByIdAsync(integrationMappingId: integrationMappingId);try await userClient.integrationMappings.deleteTeamsIntegrationMappingById(integrationMappingId: integrationMappingId)userClient.getIntegrationMappings().deleteTeamsIntegrationMappingById(integrationMappingId)