> ## Documentation Index
> Fetch the complete documentation index at: https://conductorone-docs-mcp-bridge-private-server.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Set up a Rollbar connector

> C1 provides identity governance for Rollbar. Integrate your Rollbar instance with C1 for unified visibility and governance over user access.

C1 provides identity governance for Rollbar. Integrate your Rollbar
account with C1 for unified visibility and governance over who belongs to
which teams.

## Capabilities

| Resource | Sync                                                          | Provision |
| -------- | ------------------------------------------------------------- | --------- |
| Users    | <Icon icon="square-check" iconType="solid" color="#c937ae" /> |           |
| Teams    | <Icon icon="square-check" iconType="solid" color="#c937ae" /> |           |

The connector reads users and teams from your Rollbar account. Each team
exposes a `member` entitlement; the connector syncs which users belong to
each team. A team's access level (for example, the built-in **Owners** team)
is recorded on the team profile.

This connector is read-only. It does not provision or modify access in
Rollbar.

## Gather Rollbar credentials

<Warning>
  You need an account owner or admin in Rollbar to create an Account Access
  Token with read scope.
</Warning>

<Steps>
  <Step>
    In Rollbar, open **Account Settings** and go to **Account Access Tokens**.
  </Step>

  <Step>
    Create a new Account Access Token with **read** scope. The connector only
    reads users, teams, and membership and never needs write scope.
  </Step>

  <Step>
    Copy the token value. You enter it as the **Rollbar Account Access Token**
    when configuring the connector.
  </Step>
</Steps>

## Configure the Rollbar connector

<Tabs>
  <Tab title="Cloud-hosted">
    Follow these instructions to use a built-in, no-code connector hosted by C1.

    <Steps>
      <Step>
        In C1, navigate to **Integrations** > **Connectors** and click **Add connector**.
      </Step>

      <Step>
        Search for **Rollbar** and click **Add**.
      </Step>

      <Step>
        Choose how to set up the new Rollbar connector.
      </Step>

      <Step>
        Set the owner for this connector.
      </Step>

      <Step>
        Click **Next**.
      </Step>

      <Step>
        Find the **Settings** area of the page and click **Edit**.
      </Step>

      <Step>
        Enter the Rollbar credentials:

        * **Rollbar Base URL**: `https://api.rollbar.com/api/1`
        * **Rollbar Account Access Token**: the read-scope Account Access Token you copied above.
      </Step>

      <Step>
        Click **Save**.
      </Step>

      <Step>
        The connector's label changes to **Syncing**, followed by **Connected**. You can view the logs to ensure that information is syncing.
      </Step>
    </Steps>

    **Done.** Your Rollbar connector is now pulling access data into C1.
  </Tab>

  <Tab title="Self-hosted">
    Follow these instructions to run the Rollbar connector in your own
    environment.

    <Steps>
      <Step>
        Create a secret for the Rollbar Account Access Token.
      </Step>

      <Step>
        Configure the connector environment variables:

        ```bash theme={"theme":{"light":"css-variables","dark":"css-variables"}}
        BATON_BASE_URL=https://api.rollbar.com/api/1
        BATON_API_TOKEN=<Rollbar Account Access Token>
        ```
      </Step>

      <Step>
        Deploy the connector using your standard self-hosted connector process.
      </Step>
    </Steps>

    **Done.** Your Rollbar connector is now pulling access data into C1.
  </Tab>
</Tabs>

## Connector configuration reference

| Setting                      | Environment variable | Required | Description                                                                                 |
| ---------------------------- | -------------------- | -------- | ------------------------------------------------------------------------------------------- |
| Rollbar Base URL             | `BATON_BASE_URL`     | Yes      | Rollbar API origin without a trailing slash, usually `https://api.rollbar.com/api/1`.       |
| Rollbar Account Access Token | `BATON_API_TOKEN`    | Yes      | Account Access Token with read scope, sent as `X-Rollbar-Access-Token`. Stored as a secret. |
