List payouts
curl --request GET \
--url https://api.helloproper.com/payouts \
--header 'Authorization: <api-key>'{
"payouts": [
{
"id": "<string>",
"payoutReason": "<string>",
"payoutDate": "<string>",
"net": {
"currency": "<string>",
"amount": 123
},
"fees": {
"currency": "<string>",
"amount": 123
},
"gross": {
"currency": "<string>",
"amount": 123
},
"bankStatement": "<string>"
}
]
}Payouts
List payouts
GET
/
payouts
List payouts
curl --request GET \
--url https://api.helloproper.com/payouts \
--header 'Authorization: <api-key>'{
"payouts": [
{
"id": "<string>",
"payoutReason": "<string>",
"payoutDate": "<string>",
"net": {
"currency": "<string>",
"amount": 123
},
"fees": {
"currency": "<string>",
"amount": 123
},
"gross": {
"currency": "<string>",
"amount": 123
},
"bankStatement": "<string>"
}
]
}Request
This request supports pagination.Response
Show child attributes
Show child attributes
The unique identifier for the payout
The reason for the payout. Can be either Payment or Refund
The date the payout was made
The bank statement reference for the payout
⌘I