List payments
curl --request GET \
--url https://api.helloproper.com/payments \
--header 'Authorization: <api-key>'{
"payments": [
{
"id": "<string>",
"paymentDate": "<string>",
"net": {
"currency": "<string>",
"amount": 123
},
"fees": {
"currency": "<string>",
"amount": 123
},
"gross": {
"currency": "<string>",
"amount": 123
},
"payoutId": "<string>",
"leaseId": "<string>"
}
]
}Payments
List payments
GET
/
payments
List payments
curl --request GET \
--url https://api.helloproper.com/payments \
--header 'Authorization: <api-key>'{
"payments": [
{
"id": "<string>",
"paymentDate": "<string>",
"net": {
"currency": "<string>",
"amount": 123
},
"fees": {
"currency": "<string>",
"amount": 123
},
"gross": {
"currency": "<string>",
"amount": 123
},
"payoutId": "<string>",
"leaseId": "<string>"
}
]
}Request
This request supports pagination.Response
Show child attributes
Show child attributes
The unique identifier for the payment
The date the payment was made
The payout that resulted from this payment
The lease identifier that this payment was made to
⌘I