v33

latestOpenAPI 3.1.0raw.githubusercontent.com2026-04-2972102177.5 KB
Integrations

Create Integration

Creates a new integration with a third-party service like 1Password. The integration can then be used in browser sessions to automatically load secrets and credentials.

post/v1/integrations

Request body

namestring required

Name for the integration

type'1PASSWORD' required

The type of integration

Example request

{
  "name": "My 1Password Integration",
  "credentials": {
    "data": {
      "serviceAccount": "ops_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    }
  }
}

Response

Integration created successfully

Example response

{
  "data": {
    "integration": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "My 1Password Integration",
      "path": "integrations/team-id/550e8400-e29b-41d4-a716-446655440000",
      "createdAt": "2024-01-01T00:00:00.000Z"
    }
  }
}