Skip to main content

List Disbursements

Fetch disbursement transactions within a chosen date range.

Applies to: Pakistan


Endpoint

MethodPOST
Path/merchants/{merchantId}/disbursements
Sandboxhttps://sandbox.simpaisa.com

Request Parameters

ParameterRequiredTypeDescription
merchantIdYesStringSimpaisa-assigned merchant ID
fromDateYesStringStart of the date range (ISO 8601)
toDateYesStringEnd of the date range (ISO 8601)
stateNoStringFilter by disbursement state (e.g. rejected, disbursed)
offsetNoStringPagination offset
limitNoStringNumber of records to return

Response Parameters

ParameterDescription
customerNameThe customer's name as provided by the merchant
customerAccountThe customer's account number (IBAN) shared for disbursement
issueDateThe date the disbursement was requested
disbDateThe date the disbursement was completed
currencyThe currency used by all requests in the disbursement
reasonPurpose or reason for the funds transfer
referenceUnique identifier defined by the merchant for the disbursement
pathThe path part of the URL to fetch the disbursement details
disbursedAmountThe total amount transferred after fees, taxes, and retentions
adjustmentsWithTaxManual adjustments, if present; already included in the total disbursement amount
stateState of the disbursement

Sample

curl --location --request POST 'https://sandbox.simpaisa.com/merchants/{merchantId}/disbursements' \
--header 'Content-Type: application/json' \
--data-raw '{
"merchantId": "2000027",
"fromDate": "2017-12-01",
"toDate": "2017-12-31",
"state": "rejected",
"offset": "0",
"limit": "25"
}'