Retrieve information about a specific collection request

Response Schema:

{
    "status": boolean,
    "message": string,
    "data": {
	    "id": string,
	    "initiatedAt": date-time,
	    "completedAt": date-time | null,
	    "amount": string,
	    "fee": string | null,
	    "bearer": "merchant" | "customer",
	    "currency": string,
	    "reference": string | null,
	    "lencoReference": string,
	    "type": "card" | "mobile-money" | "bank-account" | null,
	    "status": "pending" | "successful" | "failed" | "otp-required" | "pay-offline" | "3ds-auth-required",
	    "source": "banking-app" | "api",
	    "reasonForFailure": string | null,
	    "settlementStatus": "pending" | "settled" | null,
	    "settlement": {
	        "id": string,
	        "amountSettled": string,
	        "currency": string,
	        "createdAt": date-time,
	        "settledAt": date-time | null,
	        "status": "pending" | "settled",
	        "type": "instant" | "next-day",
	        "accountId": string,
	    } | null,
	    "mobileMoneyDetails": {
	        "country": string,
	        "phone": string,
	        "operator": string,
	        "accountName": string | null,
	    } | null,
	    "bankAccountDetails": null,
	    "cardDetails": {
	        "firstName": string | null,
	        "lastName": string | null,
	        "bin": string | null,
	        "last4": string | null,
	        "cardType": string | null,
	    } | null,
	}
}
Language
Credentials
Header