ServiceNow · Arazzo Workflow

ServiceNow Import Set Load and Verify

Version 1.0.0

Insert a record into an import set staging table, then read the transformed target record.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AutomationCloud ServicesDigital WorkflowsEnterprise PlatformITSMProcessesT1Workflow-AutomationWorkflowsArazzoWorkflows

Provider

servicenow

Workflows

import-set-load-and-verify
Load a staging record and verify the transformed target record.
Inserts a record into an import set staging table and reads the transformed target record back to confirm the load succeeded.
2 steps inputs: record, stagingTableName, targetTableName outputs: recordSysId, status, targetSysId
1
insertStagingRecord
Insert a single record into the import set staging table, triggering the synchronous transform into the target table.
2
verifyTargetRecord
Read the transformed target record back through the Table API using the target_sys_id returned by the transform to confirm the load.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: ServiceNow Import Set Load and Verify
  summary: Insert a record into an import set staging table, then read the transformed target record.
  description: >-
    The bulk-ingestion verification flow spanning the Import Set and Table APIs.
    The workflow inserts a single record into an import set staging table, which
    is synchronously transformed and loaded into a target table, then reads the
    resulting target record back through the Table API using the target_sys_id
    returned by the transform so the load can be confirmed. The Import Set API
    returns its transform outcome under a result array, and the Table API wraps
    the target record under a result object. Every request is written inline.
  version: 1.0.0
sourceDescriptions:
- name: importSetsApi
  url: ../openapi/servicenow-import-sets-api-openapi.yml
  type: openapi
- name: tableRecordsApi
  url: ../openapi/servicenow-table-records-api-openapi.yml
  type: openapi
workflows:
- workflowId: import-set-load-and-verify
  summary: Load a staging record and verify the transformed target record.
  description: >-
    Inserts a record into an import set staging table and reads the transformed
    target record back to confirm the load succeeded.
  inputs:
    type: object
    required:
    - stagingTableName
    - targetTableName
    - record
    properties:
      stagingTableName:
        type: string
        description: The import set staging table name (must extend sys_import_set_row).
      targetTableName:
        type: string
        description: The target table the transform map loads into (e.g. incident).
      record:
        type: object
        description: The field name/value pairs to insert into the staging table.
  steps:
  - stepId: insertStagingRecord
    description: >-
      Insert a single record into the import set staging table, triggering the
      synchronous transform into the target table.
    operationId: insertImportSetRecord
    parameters:
    - name: stagingTableName
      in: path
      value: $inputs.stagingTableName
    requestBody:
      contentType: application/json
      payload: $inputs.record
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      targetSysId: $response.body#/result/0/target_sys_id
      status: $response.body#/result/0/status
  - stepId: verifyTargetRecord
    description: >-
      Read the transformed target record back through the Table API using the
      target_sys_id returned by the transform to confirm the load.
    operationId: getRecord
    parameters:
    - name: tableName
      in: path
      value: $inputs.targetTableName
    - name: sys_id
      in: path
      value: $steps.insertStagingRecord.outputs.targetSysId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recordSysId: $response.body#/result/sys_id
      createdOn: $response.body#/result/sys_created_on
  outputs:
    targetSysId: $steps.insertStagingRecord.outputs.targetSysId
    status: $steps.insertStagingRecord.outputs.status
    recordSysId: $steps.verifyTargetRecord.outputs.recordSysId

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/servicenow-import-set-load-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.