Ninox · Arazzo Workflow

Ninox — Create a table and add records

Version 1.0.0

Create a table in a module, add fields in batch, insert records, then read them back.

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

Provider

ninox

Workflows

createTableAndAddRecords
Provision a table with fields and load records into it.
4 steps inputs: moduleName, tableName, workspaceId outputs: records
4
readRecords

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Ninox — Create a table and add records
  version: 1.0.0
  summary: Create a table in a module, add fields in batch, insert records, then read them back.
sourceDescriptions:
- name: fieldsApi
  url: ../openapi/ninox-fields-api-openapi.yml
  type: openapi
- name: recordsApi
  url: ../openapi/ninox-records-api-openapi.yml
  type: openapi
- name: tablesApi
  url: ../openapi/ninox-tables-api-openapi.yml
  type: openapi
workflows:
- workflowId: createTableAndAddRecords
  summary: Provision a table with fields and load records into it.
  inputs:
    type: object
    required: [workspaceId, moduleName]
    properties:
      workspaceId: {type: string}
      moduleName: {type: string}
      tableName: {type: string, default: Products}
  steps:
  - stepId: createTable
    operationId: TablesV1Controller_createTable
    parameters:
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: moduleName
      in: path
      value: $inputs.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: $inputs.moduleName
    - name: tableName
      in: path
      value: $steps.createTable.outputs.tableName
    successCriteria:
    - condition: $statusCode == 201
  - stepId: addRecords
    operationId: RowsV1Controller_addRows
    parameters:
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: moduleName
      in: path
      value: $inputs.moduleName
    - name: tableName
      in: path
      value: $steps.createTable.outputs.tableName
    successCriteria:
    - condition: $statusCode == 201
  - stepId: readRecords
    operationId: RowsV1Controller_getRows
    parameters:
    - name: workspaceId
      in: path
      value: $inputs.workspaceId
    - name: moduleName
      in: path
      value: $inputs.moduleName
    - name: tableName
      in: path
      value: $steps.createTable.outputs.tableName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      records: $response.body#/data
  outputs:
    records: $steps.readRecords.outputs.records

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-create-table-and-add-records"
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.