Temenos · Example Payload

Temenos Transact Create Customer Example

BankingCloud BankingCore BankingDigital BankingFinancial ServicesFintechOpen BankingPaymentsWealth Management

Temenos Transact Create Customer 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/party/customers",
    "headers": {
      "Authorization": "Bearer {jwt_token}",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "customerType": "INDIVIDUAL",
      "firstName": "Emily",
      "lastName": "Carter",
      "dateOfBirth": "1988-07-22",
      "nationality": "GB",
      "email": "emily.carter@example.com",
      "mobileNumber": "+447712345678",
      "address": {
        "line1": "14 Maple Street",
        "city": "London",
        "postCode": "EC1A 1BB",
        "country": "GB"
      },
      "residency": "GB",
      "preferredLanguage": "EN"
    }
  },
  "response": {
    "status": 201,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "customerId": "C-200456",
      "customerType": "INDIVIDUAL",
      "firstName": "Emily",
      "lastName": "Carter",
      "dateOfBirth": "1988-07-22",
      "nationality": "GB",
      "email": "emily.carter@example.com",
      "mobileNumber": "+447712345678",
      "status": "ACTIVE",
      "kycStatus": "PENDING",
      "createdAt": "2026-05-03T10:30:00Z",
      "address": {
        "line1": "14 Maple Street",
        "city": "London",
        "postCode": "EC1A 1BB",
        "country": "GB"
      }
    }
  }
}