Appmixer Data Stores API

Data store management

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

appmixer-data-stores-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Appmixer Accounts Data Stores 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: Data Stores
  description: Data store management
paths:
  /data-stores:
    get:
      operationId: listDataStores
      summary: Appmixer List data stores
      description: Get all data stores belonging to the authenticated user.
      responses:
        '200':
          description: List of data stores returned successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DataStore'
        '401':
          description: Unauthorized
      tags:
      - Data Stores
  /data-stores/{storeId}:
    get:
      operationId: getDataStore
      summary: Appmixer Get a data store
      description: Get details of a specific data store.
      parameters:
      - name: storeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Data store returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataStore'
        '401':
          description: Unauthorized
        '404':
          description: Data store not found
      tags:
      - Data Stores
    delete:
      operationId: deleteDataStore
      summary: Appmixer Delete a data store
      description: Delete a specific data store.
      parameters:
      - name: storeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Data store deleted successfully
        '401':
          description: Unauthorized
        '404':
          description: Data store not found
      tags:
      - Data Stores
components:
  schemas:
    DataStore:
      type: object
      properties:
        storeId:
          type: string
        name:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Access token obtained from the /user/auth endpoint. Pass as Authorization: Bearer {token} header.'