Mindbody · Arazzo Workflow

Mindbody Issue User Token and List Clients

Version 1.0.0

Issue a staff user token and use it to list clients at a site.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub FitnessWellnessBeautySchedulingBookingPoint-of-SaleStudiosSalonsSpasWebhookArazzoWorkflows

Provider

mindbody

Workflows

issue-token-list-clients
Authenticate a staff user and list clients with the issued token.
Issues a staff user token from a username and password, then lists the clients at the site using the issued access token as the Authorization header.
2 steps inputs: apiKey, password, siteId, username outputs: accessToken, clients
1
issueToken
Issue a staff user token from the supplied credentials and capture the returned access token.
2
listClients
List the clients at the site using the issued access token as the Authorization header.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Mindbody Issue User Token and List Clients
  summary: Issue a staff user token and use it to list clients at a site.
  description: >-
    An authentication bootstrap flow. The workflow issues a staff user token by
    posting credentials to the User Token endpoint, captures the returned access
    token, and then uses that token as the Authorization header when listing the
    site's clients. Every step inlines the Mindbody API-Key and SiteId headers
    along with its request body so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: clientApi
  url: ../openapi/mindbody-client-api-openapi.yml
  type: openapi
- name: userTokenApi
  url: ../openapi/mindbody-user-token-api-openapi.yml
  type: openapi
workflows:
- workflowId: issue-token-list-clients
  summary: Authenticate a staff user and list clients with the issued token.
  description: >-
    Issues a staff user token from a username and password, then lists the
    clients at the site using the issued access token as the Authorization
    header.
  inputs:
    type: object
    required:
    - apiKey
    - siteId
    - username
    - password
    properties:
      apiKey:
        type: string
        description: The Mindbody-issued API key sent in the API-Key header.
      siteId:
        type: string
        description: The ID of the site to authenticate against and list clients from.
      username:
        type: string
        description: The staff user's username.
      password:
        type: string
        description: The staff user's password.
  steps:
  - stepId: issueToken
    description: >-
      Issue a staff user token from the supplied credentials and capture the
      returned access token.
    operationId: issueToken
    parameters:
    - name: version
      in: path
      value: '6'
    - name: API-Key
      in: header
      value: $inputs.apiKey
    - name: siteId
      in: header
      value: $inputs.siteId
    requestBody:
      contentType: application/json
      payload:
        Username: $inputs.username
        Password: $inputs.password
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      accessToken: $response.body#/AccessToken
      tokenType: $response.body#/TokenType
  - stepId: listClients
    description: >-
      List the clients at the site using the issued access token as the
      Authorization header.
    operationId: getClients
    parameters:
    - name: version
      in: path
      value: '6'
    - name: API-Key
      in: header
      value: $inputs.apiKey
    - name: siteId
      in: header
      value: $inputs.siteId
    - name: authorization
      in: header
      value: $steps.issueToken.outputs.accessToken
    - name: request.limit
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      clients: $response.body#/Clients
  outputs:
    accessToken: $steps.issueToken.outputs.accessToken
    clients: $steps.listClients.outputs.clients

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/mindbody-issue-token-list-clients-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.