# Get a list of withdrawal records

# Dxplaination of Interface Call Request

Http request method: POST
https://api.weixin.qq.com/product/funds/scanwithdraw?access_token=xxxxxxxxx 

# Example of request parameters

{
    "page_num": 1,
    "page_size": 10
}

# Examples of back-up

{
    "list": [{
        "out_request_no": "3163339305837870",
            "amount": 1,
            "status": "SUCCESS",
            "reason": "", 
            "remark": "", 
            "bank_memo": "", 
            "wxpay_update_time": 1594408007,
            "wxpay_create_time": 1594365375
    }, {
        "out_request_no": "180687538055",
            "amount": 1,
            "status": "SUCCESS",
            "reason": "", 
            "remark": "", 
            "bank_memo": "", 
            "wxpay_update_time": 1594404381,
            "wxpay_create_time": 1594365335
    }], 
    "total_num": 103 
}

# Dxplaination of request parameters

parameter type Is it compulsory? Introductions
Page_num number yes page number
Page_Size number yes Size of each page

# Dxplaination of callback parameters

parameter type Introductions
Error code number Error code
errmsg string Error message
list.out_request_no string Payment Card Number
list.amount number Amount of withdrawal
list.status string Redemption Status
list.reason string Reasons for the withdrawal failure
list.remark string Remarks
list.bank_Memo string Bank Notes
list.wxpay_update_Time number Updated time
list.wxpay_create_Time number Start Time

# Return code

Return code Error Type
-1 System exceptions