Rental Taxes

Retrieve Rental Taxes for the Inventory or specific Unit

Overview

The Rental Taxes request on the rates endpoint allows the Agent to retrieve tax percentages for rental properties in the Inventory or for specific units managed by the Property Manager. These tax percentages are essential for accurately calculating the total rental cost, ensuring compliance with local tax regulations, and providing transparency to guests regarding additional charges.

Endpoints Available

MethodEndpointDescription
GETv2023.07.31/rates/taxesRetrieve Rental Taxes for Inventory
GETv2023.07.31/rates/taxes/{unitId}Retrieve Rental Taxes for Unit in Inventory

Path Parameters

Path ParameterRequired / OptionalDescription
{unitId}RequiredUnique Identifier for Unit in Inventory

Query String Parameters

ParameterRequired / OptionalDescriptionData Type
pageOptionalThe page to be shownint
pageSizeOptionalLimits the number of returned resultsint
lastUpdateDateOptionalOnly return objects which have been modified after a certain datedate-time
mcUserIdOptionalUnique Identifier for supplierint
mcUserIdsOptionalUnique Identifiers for suppliersarray
unitIdOptionalUnique Identifier for Unit in Inventoryint
unitIdsOptionalUnique Identifier for Units in Inventoryarray

Response Definition

Response ItemDescriptionData Type
"units"A list of rental units in the inventoryarray

"units" Object

Response ItemDescriptionData Type
"unit_id"Unique Identifier for Unit in Inventoryint
"taxes"A list of tax objects associated with the rental unit, specifying tax informationarray
"error_message"*An error message indicating the reason for a failed request or operation (if applicable)string
"error_code"*An error code associated with the specific error message (if applicable)string
"mc_user_id"Unique Identifier for the Supplierint

"taxes" Object

Response ItemDescriptionData Type
"name"The name or label of the taxstring
"value"The numerical value of the tax, representing the tax rate or amountfloat
"value_type"The type of tax value, which could be "PERCENTAGE" or "AMOUNTstring
"tax_type"A classification or category of the tax (e.g., "TAX_ONE", "TAX_TWO", TAX_THREE)string

Sample Request

curl --request GET \
     --url 'https://api.ciiruspartners.com/v2023.07.31/rates/taxes?page=1&pageSize=50'

Sample Response

"units": [
        {
            "unit_id": 219264,
            "taxes": [
                {
                    "name": "Sales Tax",
                    "value": 7.500,
                    "value_type": "PERCENTAGE",
                    "tax_type": "TAX_ONE"
                },
                {
                    "name": "Tourist Tax",
                    "value": 6.000,
                    "value_type": "PERCENTAGE",
                    "tax_type": "TAX_TWO"
                }
            ],
            "mc_user_id": 30620
        }
     ],
    "next_page_url": "https://api.ciiruspartners.com/v20230731/rates/taxes?page=2&pageSize=50",
    "total_page_count": 2