--- title: "1Password Connection" description: "Learn how to configure a 1Password Connection for Infisical." --- Infisical supports the use of [Service Accounts](https://developer.1password.com/docs/service-accounts) to connect with 1Password. ## Setup 1Password Connect Server If you already have a Connect Server for your vault you may skip this step. ![Developer Page](/images/app-connections/1password/developer-page.png) ![Click Connect Server](/images/app-connections/1password/click-connect-server.png) 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" ![Configure Connect Server](/images/app-connections/1password/configure-connect-server.png) 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" ![Set Up Access Token](/images/app-connections/1password/set-up-access-token.png) Download the Credentials File and set up your Connect Server. Follow [this guide](https://developer.1password.com/docs/connect/get-started#step-2-deploy-1password-connect-server) to deploy a Connect Server. Make sure to save the **Access Token** for later use. ![Deploy Server](/images/app-connections/1password/deploy-server.png) ## Create 1Password Connection in Infisical In your Infisical dashboard, navigate to the **App Connections** page in the desired project. ![App Connections Tab](/images/app-connections/general/add-connection.png) Click the **+ Add Connection** button and select the **1Password Connection** option from the available integrations. ![Select 1Password Connection](/images/app-connections/1password/app-connection-option.png) 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 ![1Password Connection Modal](/images/app-connections/1password/app-connection-modal.png) After clicking Create, your **1Password Connection** is established and ready to use with your Infisical project. ![1Password Connection Created](/images/app-connections/1password/app-connection-created.png) 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 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": "" } }' ``` ### Sample response ```bash Response { "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" } } } ```