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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Connect integration account credentials

> Validates secret form credentials and links the resulting account.



## OpenAPI

````yaml https://automate.ax/api/v1/openapi.json post /organizations/{organizationId}/integration-account-credentials
openapi: 3.1.1
info:
  title: Automate.ax API
  version: 0.0.0
servers:
  - url: https://automate.ax/api/v1
security:
  - bearerAuth: []
paths:
  /organizations/{organizationId}/integration-account-credentials:
    post:
      tags:
        - Integration Accounts
      summary: Connect integration account credentials
      description: Validates secret form credentials and links the resulting account.
      operationId: connectIntegrationAccountCredentials
      parameters:
        - name: organizationId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                connectionMethodId:
                  type: string
                  minLength: 1
                data:
                  type: object
                  propertyNames:
                    type: string
                  additionalProperties:
                    anyOf:
                      - type: string
                      - type: number
                      - type: boolean
                serviceId:
                  type: string
                  minLength: 1
              required:
                - connectionMethodId
                - data
                - serviceId
      responses:
        '201':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  accountId:
                    type: string
                required:
                  - accountId
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Automate.ax user session bearer token.

````