Albato Automations API

Manage automation workflows

Documentation

Specifications

Schemas & Data

📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-automations-automation-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-automations-automation-step-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-automations-execution-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-automations-automation-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-automations-automation-step-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-automations-execution-structure.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-embedded-team-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-embedded-user-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-embedded-connector-schema.json
📊
JSONSchema
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-schema/albato-albato-embedded-template-schema.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-embedded-team-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-embedded-user-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-embedded-connector-structure.json
📊
JSONStructure
https://raw.githubusercontent.com/api-evangelist/albato/refs/heads/main/json-structure/albato-albato-embedded-template-structure.json

Other Resources

OpenAPI Specification

albato-automations-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Albato Automations API
  description: REST API for managing automation workflows in the Albato no-code iPaaS platform. Supports creating, reading, updating, enabling, disabling, and monitoring multi-step automation workflows that connect 1,000+ apps.
  version: 1.0.0
  contact:
    name: Albato Support
    url: https://albato.com
servers:
- url: https://albato.com/api/v1
  description: Albato API
security:
- ApiKeyAuth: []
tags:
- name: Automations
  description: Manage automation workflows
paths:
  /automations:
    get:
      operationId: listAutomations
      summary: List automations
      description: Returns all automation workflows for the current account.
      tags:
      - Automations
      parameters:
      - name: status
        in: query
        description: Filter by status
        schema:
          type: string
          enum:
          - active
          - inactive
          - all
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
          maximum: 100
      - name: offset
        in: query
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: List of automations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutomationList'
        '401':
          description: Unauthorized
    post:
      operationId: createAutomation
      summary: Create an automation
      description: Creates a new automation workflow.
      tags:
      - Automations
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutomationRequest'
      responses:
        '201':
          description: Automation created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Automation'
        '400':
          description: Invalid request
  /automations/{id}:
    get:
      operationId: getAutomation
      summary: Get an automation
      description: Returns a specific automation workflow.
      tags:
      - Automations
      parameters:
      - name: id
        in: path
        required: true
        description: Automation ID
        schema:
          type: string
      responses:
        '200':
          description: Automation details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Automation'
        '404':
          description: Not found
    put:
      operationId: updateAutomation
      summary: Update an automation
      description: Updates an existing automation workflow.
      tags:
      - Automations
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AutomationRequest'
      responses:
        '200':
          description: Automation updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Automation'
    delete:
      operationId: deleteAutomation
      summary: Delete an automation
      description: Deletes an automation workflow.
      tags:
      - Automations
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
  /automations/{id}/enable:
    post:
      operationId: enableAutomation
      summary: Enable an automation
      description: Activates an automation to start processing triggers.
      tags:
      - Automations
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Automation enabled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Automation'
  /automations/{id}/disable:
    post:
      operationId: disableAutomation
      summary: Disable an automation
      description: Deactivates an automation to pause processing.
      tags:
      - Automations
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Automation disabled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Automation'
components:
  schemas:
    AutomationRequest:
      type: object
      required:
      - name
      - steps
      properties:
        name:
          type: string
        description:
          type: string
        steps:
          type: array
          items:
            $ref: '#/components/schemas/AutomationStep'
    Automation:
      allOf:
      - $ref: '#/components/schemas/AutomationRequest'
      - type: object
        properties:
          id:
            type: string
          status:
            type: string
            enum:
            - active
            - inactive
          trigger_count:
            type: integer
          success_count:
            type: integer
          error_count:
            type: integer
          created_at:
            type: string
            format: date-time
          updated_at:
            type: string
            format: date-time
    AutomationList:
      type: object
      properties:
        total:
          type: integer
        items:
          type: array
          items:
            $ref: '#/components/schemas/Automation'
    AutomationStep:
      type: object
      properties:
        app:
          type: string
          description: App identifier
        type:
          type: string
          enum:
          - trigger
          - action
          - condition
          - delay
          description: Step type
        event:
          type: string
          description: Trigger or action event name
        config:
          type: object
          additionalProperties: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Albato account API key