> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Booking Fees # Type: Booking Fee Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/pricing/booking-fees/booking-fee-object.md ## Description: Fee for a specific booking that's calculated according to the associated [booking policy snapshot](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policy-snapshots/introduction.md). Currently, only cancellation fees, including no-show fees, are supported. Wix Bookings automatically applies the cancellation fee to the [eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction.md) if the customer cancels the booking themselves. Cancellation fees aren't automatically applied to an eCommerce order if the business owner cancels the booking in their dashboard on behalf of the customer. You can call [Apply Booking Fee to Order](https://dev.wix.com/docs/rest/business-solutions/bookings/pricing/booking-fees/apply-booking-fees-to-order.md) to manually apply booking fees to an eCommerce order. ## Schema: ```json Type: Booking Fee Object | type: BookingFee Description: Fee for a specific booking that's calculated according to the associated [booking policy snapshot](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policy-snapshots/introduction.md). Currently, only cancellation fees, including no-show fees, are supported. Wix Bookings automatically applies the cancellation fee to the [eCommerce order](https://dev.wix.com/docs/rest/business-solutions/e-commerce/orders/introduction.md) if the customer cancels the booking themselves. Cancellation fees aren't automatically applied to an eCommerce order if the business owner cancels the booking in their dashboard on behalf of the customer. You can call [Apply Booking Fee to Order](https://dev.wix.com/docs/rest/business-solutions/bookings/pricing/booking-fees/apply-booking-fees-to-order.md) to manually apply booking fees to an eCommerce order. - name: id | type: string | description: Booking fee ID. - name: value | type: string | description: - name: bookingId | type: string | description: ID of the booking associated with the fee. - name: cancellationFee | type: CancellationFee | description: Cancellation fee details. - name: price | type: Money | description: Price the customer must pay. - name: value | type: string | description: Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative. - name: currency | type: string | description: Currency code. Must be valid ISO 4217 currency code (e.g., USD). - name: formattedValue | type: string | description: Monetary amount. Decimal string in local format (e.g., 1 000,30). Optionally, a single (-), to indicate that the amount is negative. - name: status | type: string | description: Status of the booking fee. enum: UNKNOWN_STATUS, PREVIEW, NOT_YET_APPLIED_TO_ORDER, APPLIED_TO_ORDER - name: trigger | type: string | description: Information about what triggered the creation of the booking fee. enum: UNKNOWN_TRIGGER, NOT_ATTENDED, BOOKING_CANCELED - name: policyDetails | type: PolicyDetails | description: Information about the [booking policy snapshot](https://dev.wix.com/docs/api-reference/business-solutions/bookings/policies/booking-policy-snapshots/introduction.md) according to which the fee was created. - name: id | type: string | description: ID of the booking policy. - name: description | type: string | description: Description of the booking policy. - name: descriptionTranslated | type: string | description: Translated description of the booking policy according to the buyer language of the eCommerce order. ```