get https://api.lenco.co/access/v2/transfers/status/
Retrieve information about a specific transfer using the reference you used when initiating the transfer
Response Schema:
{
"status": boolean,
"message": string,
"data": {
"id": string,
"amount": string,
"fee": string,
"currency": string,
"narration": string,
"initiatedAt": date-time,
"completedAt": date-time | null,
"accountId": string,
"creditAccount": {
"id": string | null,
"type": string,
"accountName": string,
"accountNumber": string | null,
"bank": {
"id": string,
"name": string,
"country": string
} | null,
"phone": string | null,
"operator": string | null,
"walletNumber": string | null,
"tillNumber": string | null
},
"status": "pending" | "successful" | "failed",
"reasonForFailure": string | null,
"reference": string | null,
"lencoReference": string,
"extraData": {
"nipSessionId": string | null,
},
"source": string
}
}