Resources
- Tenancies
- Leases
- Bills
- Pending bills
- Payments
- Payouts
- Recurring bill items
- One time bill items
- Transactions
- Products
- Contacts
- Rent adjustment
- Categories
Payouts
List payouts
GET
/
payouts
List payouts
Copy
curl --request GET \
--url https://api.helloproper.com/payouts \
--header 'Authorization: <api-key>'
Copy
{
"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
List payouts
Copy
curl --request GET \
--url https://api.helloproper.com/payouts \
--header 'Authorization: <api-key>'
Copy
{
"payouts": [
{
"id": "<string>",
"payoutReason": "<string>",
"payoutDate": "<string>",
"net": {
"currency": "<string>",
"amount": 123
},
"fees": {
"currency": "<string>",
"amount": 123
},
"gross": {
"currency": "<string>",
"amount": 123
},
"bankStatement": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.