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
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"
}
}
}