> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete bill

> Delete a bill server side by its ID.

```lua Export theme={null}
exports["billing_ui"]:deleteBillId(billId)
```

### Parameters

| Name     | Data Type | Description                                        |
| -------- | --------- | -------------------------------------------------- |
| `billId` | integer   | The bill ID, found in the database table `billing` |

## Example

```lua theme={null}
-- Example command /deleteBillId 51
RegisterCommand("deleteBillId", function(playerId, args)
    local billId = tonumber(args[1])
    exports["billing_ui"]:deleteBillId(billId)
end)
```


## Related topics

- [Refresh bill](/billing-ui/server/refresh-bill.md)
- [Server](/billing-ui/server/index.md)
- [Delete door](/doors-creator/server/delete-door.md)
- [Installation](/billing-ui/installation.md)
- [On bill created](/billing-ui/server/on-bill-created.md)
