123FormBuilder · Arazzo Workflow

123FormBuilder Authenticate and List Forms

Version 1.0.0

Obtain a JWT token and list the forms available to the authenticated user.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Online FormsForm BuilderSurveysWorkflowsData CollectionSubmissionsWebhookHIPAAGDPRPaymentsArazzoWorkflows

Provider

123formbuilder

Workflows

authenticate-and-list-forms
Log in for a JWT token and list the account's forms.
Authenticates against the token endpoint to mint a JWT, then lists the forms visible to the account using that token as the required JWT query parameter.
2 steps inputs: page, password, perPage, username outputs: forms, token, total
1
authenticate
Authenticate with the username and password to obtain a JWT token that will be supplied as the JWT query parameter on subsequent requests.
2
listForms
List the forms available to the authenticated account, passing the JWT obtained during login as the required JWT query parameter.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: 123FormBuilder Authenticate and List Forms
  summary: Obtain a JWT token and list the forms available to the authenticated user.
  description: >-
    The entry point for every 123FormBuilder integration. The workflow logs in
    with a username or email and password to obtain a JWT token, then uses that
    token to page through the forms owned by the account. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: formsApi
  url: ../openapi/123formbuilder-forms-api-openapi.yml
  type: openapi
- name: loginApi
  url: ../openapi/123formbuilder-login-api-openapi.yml
  type: openapi
workflows:
- workflowId: authenticate-and-list-forms
  summary: Log in for a JWT token and list the account's forms.
  description: >-
    Authenticates against the token endpoint to mint a JWT, then lists the
    forms visible to the account using that token as the required JWT query
    parameter.
  inputs:
    type: object
    required:
    - username
    - password
    properties:
      username:
        type: string
        description: The 123FormBuilder username to authenticate with.
      password:
        type: string
        description: The plain text password for the account.
      perPage:
        type: integer
        description: How many forms to return per page (default 100, max 1000).
      page:
        type: integer
        description: The page number of forms to retrieve.
  steps:
  - stepId: authenticate
    description: >-
      Authenticate with the username and password to obtain a JWT token that
      will be supplied as the JWT query parameter on subsequent requests.
    operationId: login-user-login
    parameters:
    - name: username
      in: query
      value: $inputs.username
    - name: password
      in: query
      value: $inputs.password
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
  - stepId: listForms
    description: >-
      List the forms available to the authenticated account, passing the JWT
      obtained during login as the required JWT query parameter.
    operationId: forms-list-forms
    parameters:
    - name: JWT
      in: query
      value: $steps.authenticate.outputs.token
    - name: per_page
      in: query
      value: $inputs.perPage
    - name: page
      in: query
      value: $inputs.page
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      forms: $response.body#/data
      total: $response.body#/meta/pagination/total
  outputs:
    token: $steps.authenticate.outputs.token
    forms: $steps.listForms.outputs.forms
    total: $steps.listForms.outputs.total

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/123formbuilder-authenticate-and-list-forms-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.