Box Developer Documentation
Beta

Delete Teams integration mapping

delete
https://api.box.com/2.0
/integration_mappings/teams/:integration_mapping_id

This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

Deletes a Teams integration mapping. You need Admin or Co-Admin role to use this endpoint.

Request

bearer [ACCESS_TOKEN]
application/json

Path Parameters

stringin pathrequired
11235432

An ID of an integration mapping

Response

none

Empty body in response

application/jsonClient error

Returns a not_found error if the integration mapping could not be found.

application/jsonClient error

An unexpected client error.

delete
Delete Teams integration mapping
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

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)