Temenos · Example Payload

Temenos Transact Create Payment Order Example

BankingCloud BankingCore BankingDigital BankingFinancial ServicesFintechOpen BankingPaymentsWealth Management

Temenos Transact Create Payment Order Example is an example object payload from Temenos, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.temenos.com/transact/v1/order/paymentOrders",
    "headers": {
      "Authorization": "Bearer {jwt_token}",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "debitAccountId": "ACC-GB12345",
      "creditAccountId": "ACC-GB99000",
      "amount": 1500.00,
      "currency": "GBP",
      "paymentType": "DOMESTIC",
      "beneficiaryName": "John Smith",
      "beneficiaryReference": "Invoice-2026-001",
      "executionDate": "2026-05-03",
      "description": "Invoice payment"
    }
  },
  "response": {
    "status": 201,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "paymentOrderId": "PO-20260503-00123",
      "status": "PENDING",
      "debitAccountId": "ACC-GB12345",
      "creditAccountId": "ACC-GB99000",
      "amount": 1500.00,
      "currency": "GBP",
      "paymentType": "DOMESTIC",
      "beneficiaryName": "John Smith",
      "beneficiaryReference": "Invoice-2026-001",
      "executionDate": "2026-05-03",
      "createdAt": "2026-05-03T09:15:00Z",
      "description": "Invoice payment"
    }
  }
}