This function parses the response from the Entrata API's "getLeases" method.
Usage
parse_entrata_leases(res)
parse_entrata_lease_customers(res_content)
parse_entrata_lease_intervals(res_content)
parse_entrata_lease_scheduled_charges(res_content)
parse_entrata_lease_unit_spaces(res_content)
Arguments
- res
The
httr2::response()
object from the Entrata API- res_content
Response content to parse
Value
Parsed Response Body Content as a tibble with leases data.
Parsed Response Body Content as a tibble with lease customer data.
Parsed Response Body Content as a tibble with lease interval data.
Parsed Response Body Content as a tibble with lease scheduled charges data.
Parsed Response Body Content as a tibble with lease unit spaces data.
Details
The core function is parse_entrata_leases()
, which parses the response
from the Entrata API's "getLeases" method called via entrata_leases()
.
parse_entrata_leases()
calls the following functions to parse the response:
parse_entrata_lease_customers()
: Parse Entrata lease customersparse_entrata_lease_intervals()
: Parse Entrata lease intervalsparse_entrata_lease_scheduled_charges()
: Parse Entrata lease scheduled chargesparse_entrata_lease_unit_spaces()
: Parse Entrata lease unit spaces
Functions
parse_entrata_lease_customers()
: Parse Entrata Lease Customersparse_entrata_lease_intervals()
: Parse Entrata Lease Intervalsparse_entrata_lease_scheduled_charges()
: Parse Entrata Lease Scheduled Chargesparse_entrata_lease_unit_spaces()
: Parse Entrata Lease Unit Spaces