Skip to main content

About

Below is a log of changes to the CCCAMBOX TV Reseller API. Updates that affect only products or features in beta or limited release may not be reflected. Each change can be described as either a breaking change or an ongoing change.
  • Breaking changes = new API version: When any backwards-incompatible changes are made, a new version of the API is released. These changes are marked in the changelog with the πŸ’₯ symbol. Users have control over when they upgrade their API version to receive breaking changes. Learn how to try out and upgrade to newer API versions.
  • Ongoing changes: Ongoing changes are backwards-compatible and are added on a continuous basis. There is no need to update the API version to receive these updates.

Key

🌱 New feature
πŸƒ Improvement
πŸ”§ Fix
πŸ’₯ Breaking change
⚠️ Deprecated
πŸ”’ Security-related
API filters, docs, and reliability improvements

Account Information

  • 🌱 New feature: Added GET /v1/me to return the authenticated account’s credits, lines_count, and server_information.
  • ⚠️ Deprecated: GET /v1/credits in favor of GET /v1/me.

Packages

  • 🌱 New feature: Added GET /v1/packages to list available premium and trial packages, including credits_cost, extra_connection_credits_cost, and min_balance values.
  • πŸƒ Improvement: GET /v1/packages supports an optional type filter with all, premium, and trial values.

Line Listing Filters

  • 🌱 New feature: Added a new status=expiring filter to GET /v1/lines/all to return enabled lines expiring within the next 7 days.
  • 🌱 New feature: Added the search query parameter to GET /v1/lines/all to search lines by partial username, line ID, or label.
  • 🌱 New feature: Added orderBy=label support to GET /v1/lines/all so line listings can be sorted by the exposed label field.
  • πŸƒ Improvement: The line listing documentation now reflects ISO 8601 datetime output examples more accurately.
  • 🌱 New feature: Added pagination metadata to GET /v1/lines/all, including offset, limit, hasNextPage, hasPreviousPage, nextOffset, and previousOffset.
  • πŸƒ Improvement: Line ordering is now stabilized with a secondary id sort to make paginated results more consistent when multiple rows share the same primary sort value.
  • πŸ’₯ Breaking Change: GET /v1/lines/all now returns a summary line shape and no longer includes macaddress or parental_code in each list item. To retrieve those fields, query a specific line with GET /v1/lines.
  • 🌱 New feature: GET /v1/lines now returns the line’s bouquets in addition to the existing detailed line fields.

Line Cost Simulation

  • 🌱 New feature: Added POST /v1/lines/simulate to return the credit cost of creating a regular line without persisting it.
  • 🌱 New feature: Added POST /v1/lines/simulate/trial to return the credit cost of creating a trial line without persisting it.

Documentation and OpenAPI

  • 🌱 New feature: Added Swagger UI endpoints for the public OpenAPI document at /doc/ui.

Rate Limiting

  • πŸƒ Improvement: API key rate limits are now 100 requests/minute for GET requests and 20 requests/minute for POST, PUT, and DELETE requests.
  • πŸƒ Improvement: Account-based rate limits are now 300 requests/minute for GET requests and 60 requests/minute for POST, PUT, and DELETE requests.
  • πŸƒ Improvement: Failed authentication attempts are limited to 10 requests/minute.
  • πŸƒ Improvement: Rate limiting is now enforced at both the API key and authenticated account level, with the effective response headers reflecting the most restrictive active limit.
  • πŸƒ Improvement: Responses now include standard rate limit headers: RateLimit-Policy, RateLimit-Limit, RateLimit-Remaining, and RateLimit-Reset.
  • πŸƒ Improvement: 429 Too Many Requests responses now include a Retry-After header to indicate when requests can be retried.
For more information, see the Rate Limiting guide.

Authentication and Error Handling

  • πŸ”’ Security-related: Authentication failures caused by invalid, disabled, banned, or missing credentials now resolve more consistently to 401 Not Authorized responses.
  • πŸ”§ Fix: Error reporting is more defensive for unauthenticated or malformed requests and avoids crashing when request bodies or members are unavailable.
  • πŸ”§ Fix: 400 Bad Request validation failures now return more consistent structured error details, making invalid request payloads easier to diagnose.
Line identifier and MAC address updates

Update Line ID Type

  • πŸ’₯ Breaking Change: Due to a database migration, all line IDs are now strings instead of numbers. This change ensures better compatibility and future-proofing of the API.

Update/Delete Line Using MAC Address

  • πŸ’₯ Breaking Change: The endpoint for updating a line using the MAC Address has been modified. You must now use the key new_macaddress instead of macaddress.
  • 🌱 New feature: Added the ability to update or delete a line using only the MAC Address.

Adding Hostname Value to Get Lines Path

  • 🌱 New feature: Added the hostname key to the Get Lines output.
Last modified on May 22, 2026