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

# List Slack Integration Mappings

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

<CodeGroup>
  ```sh cURL theme={null}
  curl -X -L GET "https://api.box.com/2.0/integration_mappings/slack?partner_item_id=C987654321&box_item_id=123456789" \
       -H "authorization: Bearer <ACCESS_TOKEN>" \
  ```

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

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

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

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

  ```java Java v10 theme={null}
  userClient.getIntegrationMappings().getSlackIntegrationMapping()
  ```

  ```javascript Node v4 theme={null}
  const integrationMappings = await client.integrationMappings.getSlackIntegrationMappings();
  console.log(`There are ${integrationMappings.entries.length} Slack integration mappings`);
  ```
</CodeGroup>
