List Payouts
This endpoint lists all customer payouts sorted by created date descendingly. This endpoint is paginated (20 records per page) and supports multiple query parameters that can be combined.
Method
GET
URL
{{BASE_URL}}/v1/payouts/list/
Headers
| Key | Description |
|---|---|
X-API-KEY | Customer’s API Key |
Payload Parameters
BASE_URL
Description
The base API URL, To be provided to the customer by Munify.Type
URLRequired
YESpage
Description
Optional page number.Type
DecimalRequired
NOExample
?page=3
page_size
Description
Optional page size. (Defaults to 20, Max is 100)Type
DecimalRequired
NOExample
?page_size=50
bank__code
bank__code__in
Description
Optional bank_code list query. Comma-separated bank names.Type
List EnumBank CodesRequired
NOExample
?bank__code__in=CIB, MISR
amount
Description
Optional amount query.Type
DecimalRequired
NOExample
?amount=3897.10
amount__lte
Description
Optional amount less than or equal query.Type
DecimalRequired
NOExample
?amount__lte=3897.10
amount__gte
Description
Optional amount greater than or equal to query.Type
DecimalRequired
NOExample
?amount__gte=3897.10
status
status__in
Description
Optional status list query. Comma-separated payout statuses.Type
List EnumPayout StatusesRequired
NOExample
?status__in=SETTLED, REFUNDED
payout_type
payout_type__in
Description
Optional type list query. Comma-separated payout types.Type
EnumPayout TypesRequired
NOExample
?payout_type__in=WALLET, BANK_ACCOUNT
date
Description
Optional date query.Type
Date (Iso Format)Required
NOExample
?date=2024-08-26
date__lte
Description
Optional date less than or equal query.Type
Date (Iso Format)Required
NOExample
date__lte=2024-08-26
date__gte
Description
Optional date greater than or equal query.Type
Date (Iso Format)Required
NOExample
date__gte=2024-08-26
initiated_from
initiated_from__in
Description
Optional initiated from query.Type
List EnumInitiated FromRequired
NOExample
initiated_from__in=API, PORTAL
search
Description
Searches by exact/contains on id and customer reference fields.Type
StringRequired
NOExample
search=c23ed0-500
Response Fields
count
Description
Total count of payouts.Type
Decimalnext
Description
URL of the next page.Type
URLprevious
Description
URL of the previous page.Type
URLresults
results.payouts
results.payout
JSON response
Status Code 201
{
"count": 156,
"next": "{{BASE_URL}}/v1/customers/payouts/page=8",
"previous": "{{BASE_URL}}/v1/customers/payouts/page=6",
"results": {
"payouts": [
{
"id": "37c23ed0-5001-11ef-9454-0242ac120002",
"customer_reference": "123456",
"created": "2024-08-03T12:07:22.714321Z",
"bank": {
"name": "Commercial International Bank - Egypt S.A.E",
"code": "CIB"
},
"receiver_name": "Ali Ahmed Mohamed Ahmed",
"receiver_phone": "+201XXXXXXXXX",
"receiver_identifier": "12345678901234",
"amount": 1576.85,
"fixed_fee": 10,
"variable_fee": 15.77,
"total_amount": 1551.08,
"currency": "EGP",
"status": "SETTLED",
"payout_type": "BANK_ACCOUNT",
"description": "August Salary",
"timeline": [
{
"on": "2024-08-05T12:39:24.940517Z",
"status": "INITIATED"
},
{
"on": "2024-08-07T16:25:32.495071Z",
"status": "SETTLED"
}
],
"failure_reason": null,
"initiated_from": "PORTAL"
},
{
"id": "37c23ed0-5001-11ef-9454-0242ac120003",
"customer_reference": "123457",
"created": "2024-08-03T12:07:22.714321Z",
"bank": {
"name": "MEEZA Digital",
"code": "MIDG"
},
"receiver_name": "Wael Sameh Mohamed Sakr",
"receiver_phone": "+201XXXXXXXXX",
"receiver_identifier": "01XXXXXXXXX",
"amount": 9600.0,
"fixed_fee": 10,
"variable_fee": 90.0,
"total_amount": 9700.0,
"currency": "EGP",
"status": "INITIATED",
"payout_type": "WALLET",
"description": "August Settlement",
"timeline": [
{
"on": "2024-08-05T12:39:24.940517Z",
"status": "INITIATED"
}
],
"failure_reason": "Unregistered receiver wallet",
"initiated_from": "API"
}
]
}
}Check List payouts: errors