POST api/admin/disbursement

Get disbursement records

Request Information

URI Parameters

None.

Body Parameters

ReportInput
NameDescriptionTypeAdditional information
Year

integer

None.

SecurityToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Year": 1,
  "SecurityToken": "sample string 2"
}

Response Information

Resource Description

Collection of TX_Disbursement
NameDescriptionTypeAdditional information
Id

integer

None.

BatchId

string

None.

TotalAmount

decimal number

None.

TotalAddress

integer

None.

CreatedDate

date

None.

VerifiedBy

integer

None.

VerifiedDate

date

None.

RejectedDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "BatchId": "sample string 2",
    "TotalAmount": 1.1,
    "TotalAddress": 1,
    "CreatedDate": "2026-03-11T13:46:45.2587874+08:00",
    "VerifiedBy": 1,
    "VerifiedDate": "2026-03-11T13:46:45.2587874+08:00",
    "RejectedDate": "2026-03-11T13:46:45.2587874+08:00"
  },
  {
    "Id": 1,
    "BatchId": "sample string 2",
    "TotalAmount": 1.1,
    "TotalAddress": 1,
    "CreatedDate": "2026-03-11T13:46:45.2587874+08:00",
    "VerifiedBy": 1,
    "VerifiedDate": "2026-03-11T13:46:45.2587874+08:00",
    "RejectedDate": "2026-03-11T13:46:45.2587874+08:00"
  }
]