> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 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.

<CodeGroup>
  ```sh cURL theme={null}
  curl -X -L DELETE "https://api.box.com/2.0/integration_mappings/teams/342423" \
       -H "authorization: Bearer <ACCESS_TOKEN>"  \
       -d ''
  ```

  ```typescript Node/TypeScript v10 theme={null}
  await userClient.integrationMappings.deleteTeamsIntegrationMappingById(
    integrationMappingId,
  );
  ```

  ```python Python v10 theme={null}
  user_client.integration_mappings.delete_teams_integration_mapping_by_id(
      integration_mapping_id
  )
  ```

  ```cs .NET v10 theme={null}
  await userClient.IntegrationMappings.DeleteTeamsIntegrationMappingByIdAsync(integrationMappingId: integrationMappingId);
  ```

  ```swift Swift v10 theme={null}
  try await userClient.integrationMappings.deleteTeamsIntegrationMappingById(integrationMappingId: integrationMappingId)
  ```

  ```java Java v10 theme={null}
  userClient.getIntegrationMappings().deleteTeamsIntegrationMappingById(integrationMappingId)
  ```
</CodeGroup>
