Transaction Status
How to check send money transaction status and reference codes
How to check transaction status
Transaction response returns a field labeled tracking_id. We use tracking_id to check for the status of the transaction.
Below are code examples for transaction status querying using the tracking_id.
from intasend import APIService
service = APIService(token=token, private_key=private_key)
status = service.transfer.status(tracking_id)
print(f"Status: {status}")
use IntaSend\IntaSendPHP\Transfer;
$transfer = new Transfer();
$transfer->init($credentials);
$transfer->status($tracking_id);
const IntaSend = require('intasend-node');
const intasend = new IntaSend(/*...Authenticate*/)
let payouts = intasend.payouts();
payouts
.status({"tracking_id": "<TRACKING-ID>"})
.then((resp) => {
console.log(`Resp: ${resp}`);
})
.catch((err) => {
console.error(`Resp error: ${err}`);
});
Status codes description
Files/Batch status codes meaning
Code | Description |
---|---|
BP101 | New batch or request, reading in progress |
BF102 | Batch/request failed |
BP103 | Batch/request waiting approval |
BP104 | Queued to check for float balance |
BF105 | Failed checking float balance |
BP106 | Float/balance check in progress |
BF107 | Failed advance float check issue |
BP108 | Advance internal validations in progress |
BP109 | Payment to beneficiary in progress |
BP110 | Sending payments to beneficiary in progress |
BC100 | Completed sending all transactions. Results ready for review |
BE111 | Batch/request ended or cancelled early. |
Transaction Status (Itemized status codes)
Code | Description |
---|---|
TP101 | New transaction. Processing is pending |
TP102 | Transaction processing started |
TF103 | Failed to initiate or process transaction. Check failed reason for more details |
TF104 | Transaction results processing in progress |
TF105 | Transaction status cannot be determined. Contact support for further check. |
TS100 | Transaction is successful |
TF106 | Transaction failed, see failed reasons for more details |
TH107 | Transaction is under observation |
TC108 | Transaction canceled |
TR109 | Transaction is queued for retry |
Updated about 2 years ago