Temenos · Arazzo Workflow

Temenos Payments Bulk Payment Batch Approval

Version 1.0.0

Create a bulk payment batch and push it through the approval workflow.

1 workflow 1 source API 1 provider
View Spec View on GitHub BankingCloud BankingCore BankingDigital BankingFinancial-ServicesFintechOpen BankingPaymentsWealth ManagementArazzoWorkflows

Provider

temenos

Workflows

bulk-payment-approval
Create a bulk payment batch and approve it for processing.
Creates a bulk payment batch and runs it through the configured approval workflow, branching on the resulting batch status.
2 steps inputs: currency, debitAccountId, payments, valueDate outputs: batchId, finalStatus, paymentCount, totalAmount
1
createBatch
Create a bulk payment batch from the supplied instructions.
2
approveBatch
Submit the batch for approval and branch on whether it was approved for processing or rejected.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Temenos Payments Bulk Payment Batch Approval
  summary: Create a bulk payment batch and push it through the approval workflow.
  description: >-
    A maker-checker bulk disbursement flow on the Temenos Payment Order Hub.
    The workflow creates a bulk payment batch from a common debit account with
    one or more beneficiary instructions, then submits the batch for approval,
    branching on whether the batch is APPROVED for processing or REJECTED.
    Every step inlines its request so the chain is self-describing.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-1340.10
  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-1340.10
      capability_name: Payment Initiation Management
      spec: temenos-bulk-payments-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: bulkPaymentsApi
  url: ../openapi/temenos-bulk-payments-api-openapi.yml
  type: openapi
workflows:
- workflowId: bulk-payment-approval
  summary: Create a bulk payment batch and approve it for processing.
  description: >-
    Creates a bulk payment batch and runs it through the configured approval
    workflow, branching on the resulting batch status.
  inputs:
    type: object
    required:
    - debitAccountId
    - currency
    - payments
    properties:
      debitAccountId:
        type: string
        description: Common debit account for the batch.
      currency:
        type: string
        description: Batch currency in ISO 4217 format.
      valueDate:
        type: string
        description: Common value date for all payments in the batch.
      payments:
        type: array
        description: Individual beneficiary payment instructions.
        items:
          type: object
  steps:
  - stepId: createBatch
    description: Create a bulk payment batch from the supplied instructions.
    operationId: createBulkPayment
    requestBody:
      contentType: application/json
      payload:
        debitAccountId: $inputs.debitAccountId
        currency: $inputs.currency
        valueDate: $inputs.valueDate
        payments: $inputs.payments
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      batchId: $response.body#/batchId
      status: $response.body#/status
      paymentCount: $response.body#/paymentCount
      totalAmount: $response.body#/totalAmount
  - stepId: approveBatch
    description: >-
      Submit the batch for approval and branch on whether it was approved for
      processing or rejected.
    operationId: approveBulkPayment
    parameters:
    - name: batchId
      in: path
      value: $steps.createBatch.outputs.batchId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      batchId: $response.body#/batchId
      status: $response.body#/status
    onSuccess:
    - name: approved
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "APPROVED" || $.status == "PROCESSING" || $.status == "COMPLETED"
        type: jsonpath
    - name: rejected
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "REJECTED"
        type: jsonpath
  outputs:
    batchId: $steps.createBatch.outputs.batchId
    totalAmount: $steps.createBatch.outputs.totalAmount
    paymentCount: $steps.createBatch.outputs.paymentCount
    finalStatus: $steps.approveBatch.outputs.status

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/temenos-bulk-payment-approval-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.