Oracle E-Business Suite · Arazzo Workflow

Oracle EBS Order-to-Cash

Version 1.0.0

Check item availability, create a sales order, confirm it, then raise the AR invoice.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Business ApplicationsE-Business SuiteEnterpriseERPOracleArazzoWorkflows

Provider

oracle-e-business-suite

Workflows

order-to-cash
Verify stock, create a sales order, and bill the customer.
Confirms on-hand quantity for the ordered item, creates a sales order for a customer, reads it back to confirm the flow status, and books an Accounts Receivable invoice for the same customer and item.
4 steps inputs: currencyCode, inventoryItemId, orderTypeId, orderedDate, organizationId, quantity, soldToOrgId, trxDate, unitSellingPrice outputs: customerTrxId, flowStatusCode, headerId, onhand
1
checkOnhand
Read on-hand quantities for the item in the organization to confirm there is stock available before booking the order.
2
createSalesOrder
Book an Order Management sales order for the customer with a single line for the requested item and quantity.
3
confirmOrder
Read the sales order back by header identifier to confirm it persisted and capture its flow status.
4
createReceivable
Create an Accounts Receivable invoice for the same customer and item so the order can be billed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS Order-to-Cash
  summary: Check item availability, create a sales order, confirm it, then raise the AR invoice.
  description: >-
    A sell-side Oracle E-Business Suite flow. The workflow verifies on-hand
    inventory for the ordered item, books an Order Management sales order for a
    customer, reads the order back to confirm its flow status, and creates the
    matching Accounts Receivable invoice. Every step inlines its request so the
    order-to-cash chain can be executed without opening the OpenAPI sources.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-200.30
  - BC-530
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-200.30
      capability_name: Accounts Receivable Management
      spec: oracle-e-business-suite-accounts-receivable-api-openapi.yml
      confidence: 0.95
    - capability_id: BC-530
      capability_name: Inventory Management
      spec: oracle-e-business-suite-inventory-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: accountsReceivableApi
  url: ../openapi/oracle-e-business-suite-accounts-receivable-api-openapi.yml
  type: openapi
- name: inventoryApi
  url: ../openapi/oracle-e-business-suite-inventory-api-openapi.yml
  type: openapi
- name: orderManagementApi
  url: ../openapi/oracle-e-business-suite-order-management-api-openapi.yml
  type: openapi
workflows:
- workflowId: order-to-cash
  summary: Verify stock, create a sales order, and bill the customer.
  description: >-
    Confirms on-hand quantity for the ordered item, creates a sales order for a
    customer, reads it back to confirm the flow status, and books an Accounts
    Receivable invoice for the same customer and item.
  inputs:
    type: object
    required:
    - inventoryItemId
    - organizationId
    - soldToOrgId
    - orderTypeId
    - currencyCode
    - quantity
    - unitSellingPrice
    - orderedDate
    - trxDate
    properties:
      inventoryItemId:
        type: integer
        description: Inventory item identifier to sell.
      organizationId:
        type: integer
        description: Inventory organization to check stock in.
      soldToOrgId:
        type: integer
        description: Sold-to customer identifier.
      orderTypeId:
        type: integer
        description: Order type identifier.
      currencyCode:
        type: string
        description: Transactional currency code.
      quantity:
        type: number
        description: Quantity ordered.
      unitSellingPrice:
        type: number
        description: Unit selling price.
      orderedDate:
        type: string
        description: Order date in YYYY-MM-DD format.
      trxDate:
        type: string
        description: AR transaction date in YYYY-MM-DD format.
  steps:
  - stepId: checkOnhand
    description: >-
      Read on-hand quantities for the item in the organization to confirm there
      is stock available before booking the order.
    operationId: getOnhandQuantities
    parameters:
    - name: inventoryItemId
      in: query
      value: $inputs.inventoryItemId
    - name: organizationId
      in: query
      value: $inputs.organizationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      onhand: $response.body#/items/0/transactionQuantity
  - stepId: createSalesOrder
    description: >-
      Book an Order Management sales order for the customer with a single line
      for the requested item and quantity.
    operationId: createSalesOrder
    requestBody:
      contentType: application/json
      payload:
        soldToOrgId: $inputs.soldToOrgId
        orderTypeId: $inputs.orderTypeId
        orderedDate: $inputs.orderedDate
        transactionalCurrCode: $inputs.currencyCode
        lines:
        - inventoryItemId: $inputs.inventoryItemId
          orderedQuantity: $inputs.quantity
          unitSellingPrice: $inputs.unitSellingPrice
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      headerId: $response.body#/headerId
      totalAmount: $response.body#/totalAmount
  - stepId: confirmOrder
    description: >-
      Read the sales order back by header identifier to confirm it persisted
      and capture its flow status.
    operationId: getSalesOrders
    parameters:
    - name: headerId
      in: query
      value: $steps.createSalesOrder.outputs.headerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      flowStatusCode: $response.body#/items/0/flowStatusCode
  - stepId: createReceivable
    description: >-
      Create an Accounts Receivable invoice for the same customer and item so
      the order can be billed.
    operationId: createArInvoice
    requestBody:
      contentType: application/json
      payload:
        customerId: $inputs.soldToOrgId
        trxDate: $inputs.trxDate
        invoiceCurrencyCode: $inputs.currencyCode
        lines:
        - lineNumber: 10
          quantity: $inputs.quantity
          unitSellingPrice: $inputs.unitSellingPrice
          inventoryItemId: $inputs.inventoryItemId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      customerTrxId: $response.body#/customerTrxId
  outputs:
    onhand: $steps.checkOnhand.outputs.onhand
    headerId: $steps.createSalesOrder.outputs.headerId
    flowStatusCode: $steps.confirmOrder.outputs.flowStatusCode
    customerTrxId: $steps.createReceivable.outputs.customerTrxId

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/oracle-e-business-suite-order-to-cash-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.