Temenos · Arazzo Workflow

Temenos Transact Onboard Customer And Open Account

Version 1.0.0

Create a customer, open an account arrangement for them, and read the account back.

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

Provider

temenos

Workflows

onboard-customer-open-account
Onboard a customer and open their first account in Temenos Transact.
Creates a customer party, opens an account arrangement for that customer using the supplied product and currency, then reads the account back to confirm it is live.
3 steps inputs: accountName, currency, customerType, firstName, lastName, nationality, productId, title outputs: accountId, accountStatus, customerId
1
createCustomer
Create a new customer party record for onboarding with the supplied personal details.
2
openAccount
Open an account arrangement for the newly created customer against the supplied product and currency.
3
getAccount
Retrieve the opened account to confirm its status and balances are available.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Temenos Transact Onboard Customer And Open Account
  summary: Create a customer, open an account arrangement for them, and read the account back.
  description: >-
    The foundational core-banking onboarding flow in Temenos Transact. The
    workflow creates a new party (customer) record, opens an account
    arrangement bound to that customer against a banking product and currency,
    and then retrieves the freshly opened account so the caller has the
    confirmed balances and status. Every step inlines its request so the chain
    can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-1330
  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-1330
      capability_name: Deposits & Savings Management
      spec: temenos-accounts-api-openapi.yml
      confidence: 0.72
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: accountsApi
  url: ../openapi/temenos-accounts-api-openapi.yml
  type: openapi
- name: holdingsApi
  url: ../openapi/temenos-holdings-api-openapi.yml
  type: openapi
- name: partyApi
  url: ../openapi/temenos-party-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-customer-open-account
  summary: Onboard a customer and open their first account in Temenos Transact.
  description: >-
    Creates a customer party, opens an account arrangement for that customer
    using the supplied product and currency, then reads the account back to
    confirm it is live.
  inputs:
    type: object
    required:
    - customerType
    - lastName
    - productId
    - currency
    properties:
      customerType:
        type: string
        description: Customer classification (INDIVIDUAL or CORPORATE).
      title:
        type: string
        description: Customer title (e.g. Mr, Ms).
      firstName:
        type: string
        description: Customer first name.
      lastName:
        type: string
        description: Customer last name or company name.
      nationality:
        type: string
        description: ISO 3166-1 alpha-2 nationality code.
      productId:
        type: string
        description: Product identifier defining the account type and terms.
      currency:
        type: string
        description: Account currency in ISO 4217 format (e.g. USD).
      accountName:
        type: string
        description: Optional display name for the account.
  steps:
  - stepId: createCustomer
    description: >-
      Create a new customer party record for onboarding with the supplied
      personal details.
    operationId: createCustomer
    requestBody:
      contentType: application/json
      payload:
        customerType: $inputs.customerType
        title: $inputs.title
        firstName: $inputs.firstName
        lastName: $inputs.lastName
        nationality: $inputs.nationality
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      customerId: $response.body#/customerId
      kycStatus: $response.body#/kycStatus
  - stepId: openAccount
    description: >-
      Open an account arrangement for the newly created customer against the
      supplied product and currency.
    operationId: createAccount
    requestBody:
      contentType: application/json
      payload:
        customerId: $steps.createCustomer.outputs.customerId
        productId: $inputs.productId
        currency: $inputs.currency
        accountName: $inputs.accountName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      accountId: $response.body#/accountId
      status: $response.body#/status
  - stepId: getAccount
    description: >-
      Retrieve the opened account to confirm its status and balances are
      available.
    operationId: getAccount
    parameters:
    - name: accountId
      in: path
      value: $steps.openAccount.outputs.accountId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      accountId: $response.body#/accountId
      status: $response.body#/status
      availableBalance: $response.body#/availableBalance
  outputs:
    customerId: $steps.createCustomer.outputs.customerId
    accountId: $steps.getAccount.outputs.accountId
    accountStatus: $steps.getAccount.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-onboard-customer-open-account-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.