Appmixer Accounts API

Connected third-party account management

Operations 3

GET /accounts Appmixer List accounts #
GET /accounts/{accountId} Appmixer Get an account #
DELETE /accounts/{accountId} Appmixer Delete an account #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/json-ld/appmixer-context.jsonld
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/examples/flow-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/examples/user-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/examples/account-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/examples/file-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/examples/data-store-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/examples/people-task-example.json
🔗
SpectralRules
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/rules/appmixer-spectral-rules.yml
🔗
Vocabulary
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/vocabulary/appmixer-vocabulary.yaml
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-authenticate-and-list-flows-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-clone-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-create-and-start-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-disconnect-invalid-account-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-onboard-user-and-create-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-reprocess-unprocessed-message-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-restart-flow-and-inspect-logs-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-stop-and-delete-flow-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/appmixer/refs/heads/main/arazzo/appmixer-update-running-flow-workflow.yml

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/appmixer-accounts-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

appmixer-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Appmixer Accounts 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: Accounts
  description: Connected third-party account management
paths:
  /accounts:
    get:
      operationId: listAccounts
      summary: Appmixer List accounts
      description: Get list of all accounts the user has authenticated with to any component (e.g. OAuth connections to third-party services).
      responses:
        '200':
          description: List of accounts returned successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Account'
        '401':
          description: Unauthorized
      tags:
      - Accounts
  /accounts/{accountId}:
    get:
      operationId: getAccount
      summary: Appmixer Get an account
      description: Get details for a specific account and check if its credentials (tokens) are still valid.
      parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Account information returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Account'
        '401':
          description: Unauthorized
        '404':
          description: Account not found
      tags:
      - Accounts
    delete:
      operationId: deleteAccount
      summary: Appmixer Delete an account
      description: Delete (disconnect) an authenticated account.
      parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Account deleted successfully
        '401':
          description: Unauthorized
        '404':
          description: Account not found
      tags:
      - Accounts
components:
  schemas:
    Account:
      type: object
      properties:
        accountId:
          type: string
        name:
          type: string
        service:
          type: string
        profileInfo:
          type: object
        valid:
          type: boolean
          description: Whether the account credentials are still valid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Access token obtained from the /user/auth endpoint. Pass as Authorization: Bearer {token} header.'