The charge codes endpoint now returns three additional fields:
allow_manual_postings– indicates whether manual postings are permitted for the charge codeservice_fee– nested object containing service fee configuration; returned when a service fee is attached to the charge code. Applicable to charge code typesADDON,FNB,OTHERS, andROOM. Containscharge_code_id,inclusive_in_linked_charge_code,include_service_fee_in_tax_calculation, andbundle_with_linked_charge_code. Returns an empty object if no service fee is configured.minimum_amount_to_charge– minimum amount to be charged for the item; applicable to charge code typesFEES,TAX, andTOURIST_TAX. Returnsnullif no minimum is set.
Example response (with service fee):
{
"id": 127833,
"charge_code": "99991919",
"description": "Charge Code with a Service Fee",
"charge_group": "Food and Beverage",
"charge_code_type": "FNB",
"amount": 0.0,
"allow_manual_postings": true,
"service_fee": {
"charge_code_id": 114502,
"inclusive_in_linked_charge_code": true,
"include_service_fee_in_tax_calculation": false,
"bundle_with_linked_charge_code": true
}
}




