Run in Apidog
This API retrieves a list of payment types available in the system, such as Cash
, Money Transfer
, TP Transfer
, Cheque Clearing
, etc. Each payment type in the response includes a unique identifier, name, and description, providing essential details for categorizing transactions. Response Table # Field Name Type Description id integer Unique identifier of the payment type. name string Name of the payment type. description string Description of the payment type.
Request samples curl --location --request GET '/core/paymenttypes'
Responses application/json Generate Code
[
{
"id" : 1 ,
"name" : "Money Transfer" ,
"description" : "Money Transfer"
} ,
{
"id" : 2 ,
"name" : "TP Transfer" ,
"description" : "Transaction Point Transfer"
} ,
{
"id" : 4 ,
"name" : "Cheque Clearing" ,
"description" : "Cheque Clearing Transaction Payment Type"
} ,
{
"id" : 5 ,
"name" : "Cash" ,
"description" : "Cash Payment Type"
} ,
{
"id" : 6 ,
"name" : "Cash" ,
"description" : "Default Cash Payment"
} ,
{
"id" : 150 ,
"name" : "Horizon Pay" ,
"description" : "Default Horizon Pay Payment Method"
} ,
{
"id" : 175 ,
"name" : "SubLedger Payment Type" ,
"description" : "Default Payment Method For SubLedger System"
}
]
Modified at 2025-04-03 20:10:35