Skip to main content
POST
/
v1
/
integrations
Create Integration
curl --request POST \
  --url https://api.anchorbrowser.io/v1/integrations \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '{
  "name": "My 1Password Integration",
  "type": "1PASSWORD",
  "credentials": {
    "type": "serviceAccount",
    "data": {
      "serviceAccount": "ops_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    }
  }
}'
{
  "data": {
    "integration": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "My 1Password Integration",
      "type": "1PASSWORD",
      "path": "integrations/team-id/550e8400-e29b-41d4-a716-446655440000",
      "createdAt": "2024-01-01T00:00:00.000Z"
    }
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Body

application/json
name
string
required

Name for the integration

Minimum length: 1
Example:

"My 1Password Integration"

type
enum<string>
required

The type of integration

Available options:
1PASSWORD
credentials
object
required

Response

Integration created successfully

data
object
I