Appmixer · Arazzo Workflow

Appmixer Disconnect an Invalid Account

Version 1.0.0

Check a connected account's validity and delete it when its credentials have expired.

1 workflow 1 source API 1 provider
View Spec View on GitHub AgenticAutomationEmbedded iPaaSIntegrationLow-CodeWorkflowsArazzoWorkflows

Provider

appmixer

Workflows

disconnect-invalid-account
Delete a connected account only when its credentials are invalid.
Fetches an account, branches on its validity flag, and disconnects it when the credentials are no longer valid.
2 steps inputs: accountId, token outputs: disconnectedAccountId
1
getAccount
Read the account and check whether its credentials are valid.
2
deleteAccount
Disconnect the account because its credentials are no longer valid.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Appmixer Disconnect an Invalid Account
  summary: Check a connected account's validity and delete it when its credentials have expired.
  description: >-
    A connection-hygiene pattern for the Appmixer iPaaS. The workflow reads a
    connected third-party account and inspects whether its stored credentials
    are still valid. When the account is no longer valid it is disconnected
    (deleted); when it is still valid it is left in place. This keeps the
    user's account list free of broken OAuth connections.
  version: 1.0.0
sourceDescriptions:
- name: accountsApi
  url: ../openapi/appmixer-accounts-api-openapi.yml
  type: openapi
workflows:
- workflowId: disconnect-invalid-account
  summary: Delete a connected account only when its credentials are invalid.
  description: >-
    Fetches an account, branches on its validity flag, and disconnects it when
    the credentials are no longer valid.
  inputs:
    type: object
    required:
    - token
    - accountId
    properties:
      token:
        type: string
        description: Appmixer access token obtained from /user/auth.
      accountId:
        type: string
        description: The identifier of the connected account to check.
  steps:
  - stepId: getAccount
    description: Read the account and check whether its credentials are valid.
    operationId: getAccount
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: accountId
      in: path
      value: $inputs.accountId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      valid: $response.body#/valid
      service: $response.body#/service
    onSuccess:
    - name: accountInvalid
      type: goto
      stepId: deleteAccount
      criteria:
      - context: $response.body
        condition: $.valid == false
        type: jsonpath
    - name: accountValid
      type: end
      criteria:
      - context: $response.body
        condition: $.valid == true
        type: jsonpath
  - stepId: deleteAccount
    description: Disconnect the account because its credentials are no longer valid.
    operationId: deleteAccount
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: accountId
      in: path
      value: $inputs.accountId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      disconnectedAccountId: $inputs.accountId
  outputs:
    disconnectedAccountId: $steps.deleteAccount.outputs.disconnectedAccountId

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/appmixer-disconnect-invalid-account-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.