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.

List Teams integration mappings

List Teams integration mappings

Use the GET /integration_mappings/teams call to fetch and filter the mappings, both the ones created manually by the admin and those created automatically by the integration.

cURL
curl -X -L GET "https://api.box.com/2.0/integration_mappings/teams" \
     -H "authorization: Bearer <ACCESS_TOKEN>" \
Node/TypeScript v10
await userClient.integrationMappings.getTeamsIntegrationMapping();
Python v10
user_client.integration_mappings.get_teams_integration_mapping()
.NET v10
await userClient.IntegrationMappings.GetTeamsIntegrationMappingAsync();
Swift v10
try await userClient.integrationMappings.getTeamsIntegrationMapping()
Java v10
userClient.getIntegrationMappings().getTeamsIntegrationMapping()