Get All Payout
DevelopingGET
/finmo/payout-method/all-payoutGet All Payout
Request
Query Params
status
string
optional
List transactions by Payout Status (IN_PROGRESS, COMPLETED, FAILED)
Example:
IN_PROGRESS
limit
string
required
Example:
10
page
string
required
Example:
1
Header Params
X-Merchant-Identifier-Id
string
required
Example:
3kqrchza3j
X-Type
string
required
sandbox || production
Example:
sandbox
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
boolean
required
message
string
required
data
array [object {26}]
required
id
string
optional
payout_id_finmo
string
optional
merchant_id
string
optional
status
string
optional
wire_id
string
optional
order_id
string
optional
due_date
string
optional
last_action
string
optional
wire_amount
integer
optional
fee_taken
integer
optional
fee_expected
integer
optional
payee_name
string
optional
currency
string
optional
beneficiary
null
optional
beneficiary_bank
null
optional
beneficiary_account_number
null
optional
beneficiary_account_iban
null
optional
wire_origin
string
optional
conversion
string
optional
process
string
optional
approval
string
optional
created_at
string
optional
updated_at
string
optional
approved_at
null
optional
denied_at
null
optional
pending_at
null
optional
total
integer
required
page
integer
required
limit
integer
required
totalPages
integer
required
Example
{
"status": true,
"message": "OK",
"data": [
{
"id": "87cf7acf-643f-4524-82ca-ed422dc5b872",
"payout_id_finmo": "87cf7acf-643f-4524-82ca-ed422dc5b872",
"merchant_id": "5a741ab5-a506-4d38-ade7-b039e38134a6",
"status": "IN_PROGRESS",
"wire_id": "5892",
"order_id": "d3e6bb6b1c474",
"due_date": "2024-10-25T00:00:00.000Z",
"last_action": "2024-10-25T00:00:00.000Z",
"wire_amount": 150,
"fee_taken": 0,
"fee_expected": 0,
"payee_name": "Danny Bryant",
"currency": "EUR",
"beneficiary": null,
"beneficiary_bank": null,
"beneficiary_account_number": null,
"beneficiary_account_iban": null,
"wire_origin": "Request Payment",
"conversion": "None",
"process": "Finmo",
"approval": "APPROVED",
"created_at": "2024-11-27T10:44:38.000Z",
"updated_at": "2024-11-27T10:44:38.000Z",
"approved_at": null,
"denied_at": null,
"pending_at": null
}
],
"total": 1,
"page": 1,
"limit": 100,
"totalPages": 1
}
Last modified: 8 days ago