# Set customer bill  as tracked

Update the Customer Bill to be tracked.

Endpoint: PUT /customer-bills/{billId}/track
Version: 2.0.0
Security: BearerAuth

## Path parameters:

  - `billId` (string, required)

## Request fields (application/json):

  - `tracked` (boolean)
    Example: true

## Response 200 fields (application/json):

  - `id` (string)
    Example: "123456789012"

  - `companyId` (string)
    Example: "123456"

  - `companyName` (string)
    Example: "CFE"

  - `accountNumber` (string)
    Example: "123"

  - `balance` (string)
    Example: "99.99"

  - `currency` (string)
    Example: "MXN"

  - `dueDate` (string)
    Example: "2024-04-20"

  - `tracked` (boolean)


