Fee types
GET /partner/v1/fee-types
Section titled “GET /partner/v1/fee-types”Scope read:rates. The agency’s active fee types — the catalogue a quote
draws its surcharge lines from. Useful for showing a guest what a stay may
include before you price one.
{ "feeTypes": [ { "id": "0191c…", "label": "Professional cleaning", "kind": "fixed", "amount": 35000, "pct": null, "includesWeeklyCleaning": false }, { "id": "0191d…", "label": "Service fee", "kind": "percent", "amount": null, "pct": 4.5, "includesWeeklyCleaning": false } ]}| Field | Notes |
|---|---|
label | Exactly what the guest sees on quotes and invoices |
kind | fixed (per stay) or percent (of accommodation, after long-stay discounts) |
amount | Minor units, null for percent fees |
pct | Percentage, null for fixed fees |
includesWeeklyCleaning | Whether a mid-stay cleaning is part of the fee |
This is the catalogue, not the calculation: which fee applies to which unit, and
what a specific stay actually costs, comes from POST /quote.
Inactive fee types are not returned.