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

# 1Password Connection

> Learn how to configure a 1Password Connection for Infisical.

## Setup 1Password Connect Server

<Note>
  If you already have a Connect Server for your vault you may skip this step.
</Note>

<Steps>
  <Step title="Navigate to 'Developer' and click 'Other'">
    <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/developer-page.png" alt="Developer Page" />
  </Step>

  <Step title="Select 'Connect Server'">
    <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/click-connect-server.png" alt="Click Connect Server" />
  </Step>

  <Step title="Configure Connect Server">
    1. Input a name for your Connect Server
    2. Click "Choose Vaults" and select the vaults you want to connect
    3. For each selected vault, click **Edit Access** and **Enable All**
    4. Click "Add Environment"

           <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/configure-connect-server.png" alt="Configure Connect Server" />
  </Step>

  <Step title="Configure Access Token">
    1. Input a name and expiration for the token
    2. Click "Choose Vaults" and select the vaults you want to connect
    3. For each selected vault, click **Edit Access** and **Enable All**
    4. Click "Issue Token"

           <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/set-up-access-token.png" alt="Set Up Access Token" />
  </Step>

  <Step title="Deploy Connect Server">
    Download the Credentials File and set up your Connect Server.

    <Note>
      Follow [this guide](https://developer.1password.com/docs/connect/get-started#step-2-deploy-1password-connect-server) to deploy a Connect Server.
    </Note>

    Make sure to save the **Access Token** for later use.

    <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/deploy-server.png" alt="Deploy Server" />
  </Step>
</Steps>

## Create 1Password Connection in Infisical

<Tabs>
  <Tab title="Infisical UI">
    <Steps>
      <Step title="Navigate to App Connections">
        In your Infisical dashboard, navigate to the **Integrations** tab in the desired project, then select **App Connections**.

        <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/general/add-connection.png" alt="App Connections Tab" />
      </Step>

      <Step title="Select 1Password Connection">
        Click the **+ Add Connection** button and select the **1Password Connection** option from the available integrations.

        <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/app-connection-option.png" alt="Select 1Password Connection" />
      </Step>

      <Step title="Fill out the 1Password Connection Modal">
        Complete the 1Password Connection form by entering:

        * A descriptive name for the connection
        * An optional description for future reference
        * The URL at which your 1Password Connect Server instance is hosted
        * The Access Token from earlier steps

                  <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/app-connection-modal.png" alt="1Password Connection Modal" />
      </Step>

      <Step title="Connection Created">
        After clicking Create, your **1Password Connection** is established and ready to use with your Infisical project.

        <img src="https://mintlify.s3.us-west-1.amazonaws.com/infisical/images/app-connections/1password/app-connection-created.png" alt="1Password Connection Created" />
      </Step>
    </Steps>
  </Tab>

  <Tab title="API">
    To create an 1Password Connection, make an API request to the [Create 1Password Connection](/api-reference/endpoints/app-connections/1password/create) API endpoint.

    ### Sample request

    ```bash Request theme={"dark"}
    curl    --request POST \
            --url https://app.infisical.com/api/v1/app-connections/1password \
            --header 'Content-Type: application/json' \
            --data '{
                "name": "my-1password-connection",
                "method": "api-token",
                "projectId": "7ffbb072-2575-495a-b5b0-127f88caef78",
                "credentials": {
                    "instanceUrl": "https://1pass.example.com",
                    "apiToken": "<YOUR-API-TOKEN>"
                }
            }'
    ```

    ### Sample response

    ```bash Response theme={"dark"}
    {
      "appConnection": {
          "id": "e5d18aca-86f7-4026-a95e-efb8aeb0d8e6",
          "name": "my-1password-connection",
          "projectId": "7ffbb072-2575-495a-b5b0-127f88caef78",
          "description": null,
          "version": 1,
          "orgId": "6f03caa1-a5de-43ce-b127-95a145d3464c",
          "createdAt": "2025-04-23T19:46:34.831Z",
          "updatedAt": "2025-04-23T19:46:34.831Z",
          "isPlatformManagedCredentials": false,
          "credentialsHash": "7c2d371dec195f82a6a0d5b41c970a229cfcaf88e894a5b6395e2dbd0280661f",
          "app": "1password",
          "method": "api-token",
          "credentials": {
            "instanceUrl": "https://1pass.example.com"
          }
      }
    }
    ```
  </Tab>
</Tabs>
