Supported use cases
Deposit accounts
Create, close, and manage deposit accounts with balance retrieval and transaction history
Loan accounts
Create loan accounts, retrieve loan details and balances, and get the amortization schedule
Party management
Comprehensive party operations including create, update, search, and retrieve party information
Supported operations
The Temenos Transact Connector supports the following operations from the Grand Central Unified API specification:Deposit account
| Operation | Endpoint |
|---|---|
| Create a deposit account | POST /deposits |
| Get deposit account details | GET /deposits/{depositId} |
| Get deposit account balances | GET /deposits/balances?depositIds={depositIds} |
| Close a deposit account | PATCH /deposits/{depositId}/close |
The create deposit operation supports current accounts, savings accounts, and term deposits. The connector automatically routes to the correct Temenos endpoint based on the product line associated with the product ID.
Deposit transactions
| Operation | Endpoint |
|---|---|
| Get transactions for a single account | GET /deposits/{depositId}/transactions |
| Get transactions for multiple accounts | POST /deposits/transactions |
| Get a transaction by ID | GET /deposits/transactions/{transactionId} |
POST /deposits/transactions accepts a request body containing a list of deposit IDs. Use this endpoint to retrieve transactions for multiple accounts in a single request.Loan account
| Operation | Endpoint |
|---|---|
| Create a loan account | POST /loans |
| Get loan balances | GET /loans/balances?loanIds={loanIds} |
| Get loan details | GET /loans?loanIds={loanIds} |
| Get amortization schedule | GET /loans/{loanId}/amortization-schedule |
Loan transactions
| Operation | Endpoint |
|---|---|
| Get loan transactions for a single loan | GET /loans/{loanId}/transactions |
| Get loan transactions for multiple loans | POST /loans/transactions |
| Get a loan transaction by ID | GET /loans/transactions/{transactionId} |
The connector doesn’t support retrieving a single loan transaction by ID.
GET /loans/transactions/{transactionId} returns HTTP 501 with error code GC023. To retrieve loan transactions, use GET /loans/{loanId}/transactions or POST /loans/transactions, then filter by transaction ID on the caller side.Party
| Operation | Endpoint |
|---|---|
| Create party | POST /parties |
| Update party details | PUT /parties/{partyId} |
| Get party details | GET /parties/{partyId} |
| Search party | GET /parties/search?{search criteria} |
| Get accounts by party ID | GET /parties/{partyId}/accounts |
| Party Relationship Maintenance | POST /parties/{partyId}/party-relationship |
Party search supports the following criteria:
Search results include relationship details, address information, and account associations for each matching party.
| Parameter | Description |
|---|---|
partyName | Full or partial party name |
firstName | Party’s first name |
middleName | Party’s middle name |
familyName | Party’s family name |
organisationName | Organisation name |
partyId | Unique party identifier |
taxIdentificationNumber | Tax identification number |
phoneNumber | Party’s phone number |
emailId | Party’s email address |
birthDate | Party’s date of birth |
depositAccountId | Associated deposit account ID |
API features
The Temenos Transact connector includes:RESTful integration
Native RESTful API integration with the Temenos Transact platform
Data mapping
Comprehensive data mapping between the Grand Central Unified API and Temenos data models
Product routing
Automatic routing between term deposit and current or savings account flows based on the product line
Parallel processing
Concurrent data fetching for party details, address resolution, and account data
Version compatibility
The Temenos Transact connector is compatible with the following Temenos Transact releases:| Version | Deposit | Deposit transactions | Loan | Loan transactions | Party | Documentation |
|---|---|---|---|---|---|---|
| Temenos Transact R25 | Full support | Full support | Create, details, balances, amortization schedule | Single loan and multi-loan retrieval (settled bills) | Full CRUD | Temenos docs |
| Temenos Transact R24 | Full support | Full support | Create, details, balances, amortization schedule | Single loan and multi-loan retrieval (settled bills) | Full CRUD | Temenos docs |
For a complete list of Grand Central error codes and their descriptions, see error codes reference.