TransfersFetch Transfers

Fetch Transfers

The Fetch Transfers endpoint allows you to retrieve a list of all transfers that have been initiated, along with their statuses and other relevant details.

Endpoint

GET https://mainapi.cashonrails.com/api/v1/fetch_all_transfers

Request Headers

HeaderTypeDescription
AuthorizationstringBearer token with your secret key

Sample Request

GET https://mainapi.cashonrails.com/api/v1/fetch_all_transfers

Sample cURL Request

curl -X GET https://mainapi.cashonrails.com/api/v1/fetch_all_transfers \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_SECRET_KEY"

Sample Response

{
    "success": true,
    "status": "00",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": 20,
                "trx": "2025011019031105106485",
                "reference": "COR-2025011019031105106485",
                "transactionRef": null,
                "sessionid": null,
                "currency": "NGN",
                "amount": "100",
                "fee": "25",
                "account_name": "John Doe",
                "account_number": "0123456789",
                "bank_name": "SAFE HAVEN MICROFINANCE BANK",
                "bank_code": "999240",
                "narration": "Test",
                "domain": "test",
                "status": "pending",
                "created_at": "2025-01-10T18:03:12.000000Z",
                "updated_at": "2025-01-10T17:03:13.000000Z"
            },
            // ... more transfers
        ],
        "first_page_url": "http://mainapi.stag.cashonrails.com/api/v1/fetch_all_transfers?page=1",
        "from": 1,
        "last_page": 1,
        "last_page_url": "http://mainapi.stag.cashonrails.com/api/v1/fetch_all_transfers?page=1",
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://mainapi.stag.cashonrails.com/api/v1/fetch_all_transfers?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "next_page_url": null,
        "path": "http://mainapi.stag.cashonrails.com/api/v1/fetch_all_transfers",
        "per_page": 50,
        "prev_page_url": null,
        "to": 17,
        "total": 17
    }
}

Response Fields

FieldTypeDescription
successbooleanIndicates if the request was successful
statusstringStatus code of the request
dataobjectContains the transfer details
current_pagenumberThe current page number
dataarrayList of transfer objects
idnumberUnique identifier for the transfer
trxstringTransaction reference
referencestringUnique reference for the transfer
transactionRefstringTransaction reference from the bank
sessionidstringSession ID
currencystringThe currency of the transfer
amountstringThe amount transferred
feestringThe fee for the transfer
account_namestringThe account name of the recipient
account_numberstringThe account number of the recipient
bank_namestringThe bank name of the recipient
bank_codestringThe bank code of the recipient
narrationstringThe narration for the transfer
domainstringThe domain of the transfer
statusstringThe status of the transfer
created_atstringThe date and time the transfer was created
updated_atstringThe date and time the transfer was last updated
first_page_urlstringURL of the first page
fromnumberThe starting record number
last_pagenumberThe last page number
last_page_urlstringURL of the last page
linksarrayPagination links
next_page_urlstringURL of the next page
pathstringPath of the current request
per_pagenumberNumber of records per page
prev_page_urlstringURL of the previous page
tonumberThe ending record number
totalnumberThe total number of records

Use this endpoint to fetch a list of all transfers, allowing you to monitor and manage your transactions effectively.

Fetch Transfers By Status

The Fetch Transfers by Status endpoint allows you to retrieve transfers filtered by their current status (success, pending, or failed).

Endpoint

GET https://mainapi.cashonrails.com/api/v1/fetch_all_transfers/{status}

Request Headers

HeaderTypeDescription
AuthorizationstringBearer token with your secret key

Status Options

StatusDescription
successCompleted transfers
pendingTransfers awaiting processing
failedFailed transfer attempts

Sample Request

curl -X GET https://mainapi.cashonrails.com/api/v1/fetch_all_transfers/success \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_SECRET_KEY"

Sample Response

{
    "success": true,
    "status": "00",
    "data": {
        "current_page": 1,
        "data": [
            {
                "id": 20,
                "trx": "2025011019031105106485",
                "reference": "COR-2025011019031105106485",
                "currency": "NGN",
                "amount": "100",
                "fee": "25",
                "account_name": "John Doe",
                "account_number": "0123456789",
                "bank_name": "SAFE HAVEN MICROFINANCE BANK",
                "bank_code": "999240",
                "narration": "Test",
                "status": "success",
                "created_at": "2025-01-10T18:03:12.000000Z",
                "updated_at": "2025-01-10T17:03:13.000000Z"
            }
            // ... more transfers with the specified status
        ],
        "first_page_url": "http://mainapi.stag.cashonrails.com/api/v1/fetch_all_transfers/success?page=1",
        "from": 1,
        "last_page": 1,
        "per_page": 50,
        "to": 17,
        "total": 17
    }
}

Response Fields

FieldTypeDescription
successbooleanIndicates if the request was successful
statusstringStatus code of the request
dataobjectContains the transfer details
current_pagenumberThe current page number
dataarrayList of filtered transfer objects