Oracle E-Business Suite · Arazzo Workflow

Oracle EBS Customer Receipt Application

Version 1.0.0

Find an open AR invoice for a customer, then check for a matching cash receipt.

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

Provider

oracle-e-business-suite

Workflows

apply-customer-receipt
Check a customer's open AR invoice against recorded cash receipts.
Lists AR invoices for a customer, captures the first transaction, then lists cash receipts for the same customer and branches on whether any receipt exists.
4 steps inputs: customerId outputs: customerTrxId, outstandingAmount, settledStatus
1
listInvoices
List AR invoices for the customer, returning the most recent one, to capture the transaction being collected.
2
listReceipts
List cash receipts for the customer, returning at most one, to determine whether a payment has been recorded.
3
reportSettled
Re-read AR invoices for the customer to report the balance now that a cash receipt was found.
4
reportOutstanding
Re-read AR invoices for the customer to surface the outstanding balance when no cash receipt was found.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS Customer Receipt Application
  summary: Find an open AR invoice for a customer, then check for a matching cash receipt.
  description: >-
    An Accounts Receivable collections flow for Oracle EBS. The workflow lists
    open AR invoices for a customer, reads the first open transaction, and
    branches on whether a cash receipt already exists for that customer to
    report the balance as settled or outstanding. Each step inlines its request
    so the receipt-application check can be executed without opening the
    OpenAPI source.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-200.30
  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
    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
workflows:
- workflowId: apply-customer-receipt
  summary: Check a customer's open AR invoice against recorded cash receipts.
  description: >-
    Lists AR invoices for a customer, captures the first transaction, then
    lists cash receipts for the same customer and branches on whether any
    receipt exists.
  inputs:
    type: object
    required:
    - customerId
    properties:
      customerId:
        type: integer
        description: Customer identifier.
  steps:
  - stepId: listInvoices
    description: >-
      List AR invoices for the customer, returning the most recent one, to
      capture the transaction being collected.
    operationId: getArInvoices
    parameters:
    - name: customerId
      in: query
      value: $inputs.customerId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      customerTrxId: $response.body#/items/0/customerTrxId
      amountDue: $response.body#/items/0/amountDue
  - stepId: listReceipts
    description: >-
      List cash receipts for the customer, returning at most one, to determine
      whether a payment has been recorded.
    operationId: getReceipts
    parameters:
    - name: customerId
      in: query
      value: $inputs.customerId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      cashReceiptId: $response.body#/items/0/cashReceiptId
    onSuccess:
    - name: receiptFound
      type: goto
      stepId: reportSettled
      criteria:
      - context: $response.body
        condition: $.items.length > 0
        type: jsonpath
    - name: receiptMissing
      type: goto
      stepId: reportOutstanding
      criteria:
      - context: $response.body
        condition: $.items.length == 0
        type: jsonpath
  - stepId: reportSettled
    description: >-
      Re-read AR invoices for the customer to report the balance now that a
      cash receipt was found.
    operationId: getArInvoices
    parameters:
    - name: customerId
      in: query
      value: $inputs.customerId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      settledStatus: $response.body#/items/0/status
    onSuccess:
    - name: done
      type: end
  - stepId: reportOutstanding
    description: >-
      Re-read AR invoices for the customer to surface the outstanding balance
      when no cash receipt was found.
    operationId: getArInvoices
    parameters:
    - name: customerId
      in: query
      value: $inputs.customerId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      outstandingAmount: $response.body#/items/0/amountDue
  outputs:
    customerTrxId: $steps.listInvoices.outputs.customerTrxId
    settledStatus: $steps.reportSettled.outputs.settledStatus
    outstandingAmount: $steps.reportOutstanding.outputs.outstandingAmount

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-customer-receipt-application-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.