Contacts
List contacts
Resources
- Tenancies
- Leases
- Bills
- Pending bills
- Payments
- Payouts
- Recurring bill items
- One time bill items
- Transactions
- Products
- Contacts
- Rent adjustment
- Categories
Contacts
List contacts
GET
/
contacts
curl --request GET \
--url https://api.helloproper.com/contacts \
--header 'Authorization: <api-key>'
{
"contacts": [
{
"id": "<string>",
"name": "<string>",
"email": "<string>",
"phoneNumber": "<string>"
}
]
}
Request
This request supports pagination.
Response
curl --request GET \
--url https://api.helloproper.com/contacts \
--header 'Authorization: <api-key>'
{
"contacts": [
{
"id": "<string>",
"name": "<string>",
"email": "<string>",
"phoneNumber": "<string>"
}
]
}