Inquiry Status Withdrawal

Money-out Get Status Withdrawal

POST [BASEURL]/api/inquiry-money-out

Retrieve the current status of a Money-Out payment (withdrawal) you created earlier. Use this to poll from your backend or to refresh the withdrawal page if webhooks are delayed.

Headers

Key
Value

x-api-key

[Your API Key]

secret-token

[Your Secret Key]

Authorization

Body

{
    "no_partner_reference" : "MC909109111925"
}

Response

{
    "meta": {
        "message": "Successfully retrieved withdraw",
        "code": 200,
        "status": "success"
    },
    "data": {
        "no_reference_number": "202509222200620000080474",
        "original_reference_no": "monebash202509225872",
        "partner_reference_no": "MC909109111925",
        "account_holder_name": "TESTING",
        "account_number": "3213132031",
        "bank_id": 14,
        "transfer_amount": 10000,
        "fee": 2500,
        "total_amount": 12500,
        "status": 7,
        "withdrawal_date": "2025-09-22 16:39:31"
    }
}

Status Code Enum List

Status Code
Description

1

create

2

confirm

3

held

4

review

5

payout

6

sent

7

complete

8

canceled

9

failed

10

refund success

26

processing bank partner

27

remind partner

Last updated