Ninox · Arazzo Workflow

Ninox — Provision a module with tables and fields

Version 1.0.0

Create a module in a workspace, add a table, and define its fields.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CompanyLow-CodeDatabaseNo-CodeApplication DevelopmentWorkflow-AutomationBusiness AppsProductivityArazzoWorkflows

Provider

ninox

Workflows

provisionModule
Stand up a new module, add a table, and create fields on it.
3 steps inputs: moduleName, tableName, workspaceId outputs: moduleName, tableName

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ninox — Provision a module with tables and fields
  version: 1.0.0
  summary: Create a module in a workspace, add a table, and define its fields.
sourceDescriptions:
- name: fieldsApi
  url: ../openapi/ninox-fields-api-openapi.yml
  type: openapi
- name: modulesApi
  url: ../openapi/ninox-modules-api-openapi.yml
  type: openapi
- name: tablesApi
  url: ../openapi/ninox-tables-api-openapi.yml
  type: openapi
workflows:
- workflowId: provisionModule
  summary: Stand up a new module, add a table, and create fields on it.
  inputs:
    type: object
    required: [workspaceId]
    properties:
      workspaceId: {type: string}
      moduleName: {type: string, default: CRM}
      tableName: {type: string, default: Contacts}
  steps:
  - stepId: createModule
    operationId: ModulesV1Controller_createModule
    parameters:
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      moduleName: $response.body#/name
  - stepId: createTable
    operationId: TablesV1Controller_createTable
    parameters:
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: moduleName
      in: path
      value: $steps.createModule.outputs.moduleName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      tableName: $response.body#/name
  - stepId: createFields
    operationId: FieldsV1Controller_createFieldsBatch
    parameters:
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: moduleName
      in: path
      value: $steps.createModule.outputs.moduleName
    - name: tableName
      in: path
      value: $steps.createTable.outputs.tableName
    successCriteria:
    - condition: $statusCode == 201
  outputs:
    moduleName: $steps.createModule.outputs.moduleName
    tableName: $steps.createTable.outputs.tableName

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/ninox-provision-module"
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.