Get payouts

Fetch all the transactions associated with your account

Fetch all the transactions associated with your app

GET https://sandbox.moneymie.com/api/v1/payout/transactions?page=1&size=20

Query Parameters

NameTypeDescription

page

Number

The page you intend to fetch, e.g. 1

size

Number

The size you want, e.g. 20

sort

String

The order in which you want the data to be provided in, e.g. DESC, ASC

{
   {
    "message": "SUCCESS",
    "data": {
        "content": [
            {
                "id": "63653542575a194f52ead307",
                "rate": {
                    "tokenSize": 2.03,
                    "feeSize": {
                        "crypto": 1.1216216216216217,
                        "fiat": 830.0000000000001
                    },
                    "total": {
                        "crypto": 3.15,
                        "fiat": 2330.0
                    },
                    "countryCode": "NG",
                    "currencyCode": "NGN",
                    "address": "0x1f28c54b757C5026712A5E566A0FE4214E9099B6",
                    "token": "USDC",
                    "paymentMethods": [
                        "BANK_TRANSFER"
                    ],
                    "executed": false,
                    "createdAt": "2022-11-04T15:39:17.714+0000",
                    "updatedAt": "2022-11-04T15:39:17.714+0000",
                    "rateId": "63653225575a194f52ead306",
                    "amount": 1500.0
                },
                "payoutType": "BANK_TRANSFER",
                "status": "SUCCESS",
                "recipient": {
                    "bankCode": "044",
                    "accountNumber": "0080078037",
                    "firstName": "Demilade",
                    "lastName": "Neves"
                },
                "senderDetails": {
                    "firstName": "Daniel",
                    "lastName": "Mendez",
                    "city": "Lekki",
                    "state": "OJO",
                    "address": "Akumgba, Abdulsalam street",
                    "country": "NG",
                    "postalCode": "98I987",
                    "msisdn": "2349079135431"
                },
                "createdAt": "2022-11-04T15:52:34.590+0000",
                "updatedAt": "2022-11-04T15:52:34.590+0000",
                "ref": "7ca43de3-1380-4c9b-8a42-f7ce8d606332"
            },
        ],
        "pageable": {
            "sort": {
                "sorted": true,
                "unsorted": false,
                "empty": false
            },
            "pageNumber": 0,
            "pageSize": 50,
            "offset": 0,
            "paged": true,
            "unpaged": false
        },
        "last": true,
        "totalPages": 1,
        "totalElements": 6,
        "sort": {
            "sorted": true,
            "unsorted": false,
            "empty": false
        },
        "first": true,
        "number": 0,
        "numberOfElements": 6,
        "size": 50,
        "empty": false
    }
}
}

Last updated