Appmixer Logs API

Flow execution logs

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

appmixer-logs-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Appmixer Accounts Logs API
  description: The Appmixer REST API provides programmatic access to manage workflows, users, accounts, apps/connectors, files, data stores, insights, and people tasks within the Appmixer embedded iPaaS platform. The API allows you to access all the features that the Appmixer UI works with.
  version: 6.1.0
  contact:
    name: Appmixer
    url: https://www.appmixer.com/
  license:
    name: Proprietary
    url: https://www.appmixer.com/terms-and-conditions
servers:
- url: https://api.{tenant}.appmixer.cloud
  description: Appmixer Cloud Tenant API
  variables:
    tenant:
      default: YOUR_TENANT
      description: Your Appmixer tenant identifier
security:
- bearerAuth: []
tags:
- name: Logs
  description: Flow execution logs
paths:
  /logs:
    get:
      operationId: getLogs
      summary: Appmixer Get logs
      description: Retrieve logs for the authenticated user's flows.
      parameters:
      - name: flowId
        in: query
        schema:
          type: string
        description: Filter logs by flow ID
      - name: limit
        in: query
        schema:
          type: integer
        description: Maximum number of log entries to return
      - name: offset
        in: query
        schema:
          type: integer
        description: Number of entries to skip
      responses:
        '200':
          description: Logs returned successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    timestamp:
                      type: string
                      format: date-time
                    flowId:
                      type: string
                    message:
                      type: string
                    level:
                      type: string
        '401':
          description: Unauthorized
      tags:
      - Logs
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Access token obtained from the /user/auth endpoint. Pass as Authorization: Bearer {token} header.'