Temenos · Arazzo Workflow

Temenos Transact Originate Loan Arrangement

Version 1.0.0

Create a borrower party and originate a loan arrangement for them.

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

Provider

temenos

Workflows

originate-loan-arrangement
Onboard a borrower and originate a loan arrangement in Temenos Transact.
Creates the borrower party, originates a loan arrangement with the supplied principal and term, and confirms it by listing the customer's loans.
3 steps inputs: currency, customerType, firstName, lastName, principalAmount, productId, term outputs: customerId, loanId, outstandingBalance
1
createBorrower
Create the borrower as a customer party record.
2
createLoan
Originate a loan arrangement for the borrower with the supplied principal, currency and term.
3
confirmLoans
List the borrower's loan arrangements to confirm the new loan is booked against the customer.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Temenos Transact Originate Loan Arrangement
  summary: Create a borrower party and originate a loan arrangement for them.
  description: >-
    Loan origination flow in Temenos Transact. The workflow creates the
    borrower as a customer party, then creates a loan arrangement specifying
    principal, currency and term against a loan product. Finally it reads the
    loan back through the list endpoint filtered to the borrower to confirm the
    arrangement is booked. Each step inlines its request so the chain is
    self-describing.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-420.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-420.10
      capability_name: Customer Data Management
      spec: temenos-party-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: holdingsApi
  url: ../openapi/temenos-holdings-api-openapi.yml
  type: openapi
- name: partyApi
  url: ../openapi/temenos-party-api-openapi.yml
  type: openapi
workflows:
- workflowId: originate-loan-arrangement
  summary: Onboard a borrower and originate a loan arrangement in Temenos Transact.
  description: >-
    Creates the borrower party, originates a loan arrangement with the supplied
    principal and term, and confirms it by listing the customer's loans.
  inputs:
    type: object
    required:
    - lastName
    - productId
    - currency
    - principalAmount
    - term
    properties:
      customerType:
        type: string
        description: Customer classification (INDIVIDUAL or CORPORATE).
      firstName:
        type: string
        description: Borrower first name.
      lastName:
        type: string
        description: Borrower last name or company name.
      productId:
        type: string
        description: Loan product identifier.
      currency:
        type: string
        description: Loan currency in ISO 4217 format.
      principalAmount:
        type: number
        description: Requested loan principal amount.
      term:
        type: integer
        description: Loan term in months.
  steps:
  - stepId: createBorrower
    description: Create the borrower as a customer party record.
    operationId: createCustomer
    requestBody:
      contentType: application/json
      payload:
        customerType: $inputs.customerType
        firstName: $inputs.firstName
        lastName: $inputs.lastName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      customerId: $response.body#/customerId
  - stepId: createLoan
    description: >-
      Originate a loan arrangement for the borrower with the supplied
      principal, currency and term.
    operationId: createLoan
    requestBody:
      contentType: application/json
      payload:
        customerId: $steps.createBorrower.outputs.customerId
        productId: $inputs.productId
        currency: $inputs.currency
        principalAmount: $inputs.principalAmount
        term: $inputs.term
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      loanId: $response.body#/loanId
      outstandingBalance: $response.body#/outstandingBalance
  - stepId: confirmLoans
    description: >-
      List the borrower's loan arrangements to confirm the new loan is booked
      against the customer.
    operationId: listLoans
    parameters:
    - name: customerId
      in: query
      value: $steps.createBorrower.outputs.customerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      loans: $response.body#/body
  outputs:
    customerId: $steps.createBorrower.outputs.customerId
    loanId: $steps.createLoan.outputs.loanId
    outstandingBalance: $steps.createLoan.outputs.outstandingBalance

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-originate-loan-arrangement-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.