Reference Data
Get Transaction Types
Retrieve all available transaction types.
Use the returned IDs in the typeID field when creating transactions.
📋 Common Types
- transfer: Bank transfer
- payment: Payment transaction
- deposit: Money deposit
- withdrawal: Money withdrawal
get/transaction-types
Response
List of transaction types
Example response
{
"success": true,
"data": [
{
"id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
"name": "transfer",
"description": "Bank transfer transaction"
}
]
}