Get Transaction Records
This is a /GetWalletHistory endpoint for you to retrieve either history of a particular order number or get the entire history of your wallet.
Last updated
{
success:true,
message:string,
data:{
account_name:''}
}{error:true, data:null}// Payload Sample to query using date parameters
{
"partner_id": "p123456",
"intrapay_merchant_id": "intrapay_merchant_123456",
"start_date": "2023-12-1",
"end_date": "2023-12-31",
"search_partner_order_ref": "", // leave order ref empty
"signature": "e.g Signature here"
}
//Payload Sample to query for a single transaction
{
"partner_id": "p123456",
"intrapay_merchant_id": "intrapay_merchant_123456",
"start_date": "", // ignore start date
"end_date": "", //ignore end date
"search_partner_order_ref": "ref2587",
"signature": "e.g Signature here"
}//Payload Sample using date parameters query
{
"success": true,
"message": "Fetch Wallet History",
"data": {
"data": null
},
"download_url": "https://sampledownload.link" //this URL will download a CVS sheet to see all data.
}
}
//Response Sample for a single transaction query
{
"success": true,
"message": "Fetch Wallet History",
"data": {
"data": [
{
"amount": 200000,
"reference": "2587",
"narration": "P2P_TXN_NAIRA_CLAIMED",
"currency": "NGN",
"created_at": "2023-12-15T12:34:50.000Z",
"type": "CREDIT"
}
],
"download_url": null
}
}