Cross-Provider Workflow

ServiceNow Catalog Order to SMS Confirmation

Version 1.0.0

Order a ServiceNow catalog item, then text the requester a confirmation.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

servicenow twilio

Workflows

catalog-order-sms
Order a catalog item, then send an SMS confirmation.
Submits a ServiceNow Service Catalog order for the given item and sends the requester an SMS order confirmation via the Twilio Messaging API.
2 steps inputs: accountSid, catalogItemSysId, fromNumber, quantity, toNumber outputs: messageSid, requestNumber
1
order-item
$sourceDescriptions.servicenowCatalog.orderItemNow
Submit a ServiceNow Service Catalog order for the item.
2
confirm-sms
$sourceDescriptions.twilioMessaging.createMessage
Text the requester an order confirmation via Twilio.

Source API Descriptions

Arazzo Workflow Specification

itsm-servicenow-catalog-order-to-sms.yml Raw ↑
arazzo: 1.0.1
info:
  title: ServiceNow Catalog Order to SMS Confirmation
  summary: Order a ServiceNow catalog item, then text the requester a confirmation.
  description: >-
    A cross-provider ITSM workflow that submits a ServiceNow Service Catalog order
    for a requested item and texts the requester an order confirmation through the
    Twilio Messaging API. Demonstrates orchestrating an enterprise service catalog
    with a programmable SMS provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: servicenowCatalog
    url: https://raw.githubusercontent.com/api-evangelist/servicenow/refs/heads/main/openapi/servicenow-cart-api-openapi.yml
    type: openapi
  - name: twilioMessaging
    url: https://raw.githubusercontent.com/api-evangelist/twilio/refs/heads/main/openapi/twilio-messages-api-openapi.yml
    type: openapi
workflows:
  - workflowId: catalog-order-sms
    summary: Order a catalog item, then send an SMS confirmation.
    description: >-
      Submits a ServiceNow Service Catalog order for the given item and sends the
      requester an SMS order confirmation via the Twilio Messaging API.
    inputs:
      type: object
      properties:
        catalogItemSysId:
          type: string
        quantity:
          type: string
        accountSid:
          type: string
        fromNumber:
          type: string
        toNumber:
          type: string
    steps:
      - stepId: order-item
        description: Submit a ServiceNow Service Catalog order for the item.
        operationId: $sourceDescriptions.servicenowCatalog.orderItemNow
        parameters:
          - name: sys_id
            in: path
            value: $inputs.catalogItemSysId
        requestBody:
          contentType: application/json
          payload:
            sysparm_quantity: $inputs.quantity
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          requestNumber: $response.body#/result/request_number
          requestId: $response.body#/result/request_id
      - stepId: confirm-sms
        description: Text the requester an order confirmation via Twilio.
        operationId: $sourceDescriptions.twilioMessaging.createMessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            AccountSid: $inputs.accountSid
            From: $inputs.fromNumber
            To: $inputs.toNumber
            Body: Your catalog request has been submitted and is being fulfilled.
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          messageSid: $response.body#/sid
    outputs:
      requestNumber: $steps.order-item.outputs.requestNumber
      messageSid: $steps.confirm-sms.outputs.messageSid

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/itsm-servicenow-catalog-order-to-sms"
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.