Billing Cycle Related Messages
Error codes related to billing cycle creation, retrieval, and management.
Overview
| Code | Message | Description |
|---|---|---|
BLC001 | The billing cycle creation data cannot be null. Please provide the necessary details to create a new billing cycle. | Required parameter billing cycle creation data is null |
BLC002 | A billing cycle with the name '{0}' already exists. Please choose a different name. | Billing cycle name already exists, violates unique constraint |
BLC003 | The requested billing cycle with the ID '{0}' does not exist. Please check the billing cycle ID and try again. | Billing cycle not found with the provided ID |
BLC004 | The billing cycle ID cannot be null. Please provide a valid billing cycle ID. | Required parameter billing cycle ID is null |
Error Code Details
BLC001
Message
The billing cycle creation data cannot be null. Please provide the necessary details to create a new billing cycle.
Description
The billing cycle creation request was submitted without the required data. The billing cycle creation data object must not be null.
Root Cause
- The billing cycle creation data object was not included in the request body.
- The request body is empty or null.
Resolution
- Provide the required billing cycle creation data in the request body.
- Ensure all mandatory fields are populated before submitting.
BLC002
Message
A billing cycle with the name '{0}' already exists. Please choose a different name.
Description
The billing cycle name provided is already in use. Billing cycle names must be unique within the system.
Root Cause
- A billing cycle with the same name already exists, violating the unique constraint.
Resolution
- Choose a different name for the billing cycle.
- List existing billing cycles to find an available name.
BLC003
Message
The requested billing cycle with the ID '{0}' does not exist. Please check the billing cycle ID and try again.
Description
The billing cycle identified by the specified ID could not be found in the system.
Root Cause
- The billing cycle ID is incorrect or does not correspond to an existing billing cycle.
- The billing cycle was deleted before this request was made.
Resolution
- Verify the billing cycle ID is correct and corresponds to an existing record.
- List available billing cycles to confirm the correct ID.
BLC004
Message
The billing cycle ID cannot be null. Please provide a valid billing cycle ID.
Description
The billing cycle ID parameter was not provided. A valid billing cycle ID is required for this operation.
Root Cause
- The billing cycle ID was not included in the request.
- The billing cycle ID field is empty or null.
Resolution
- Provide a valid billing cycle ID in the request.
- Ensure the billing cycle ID field is populated before submitting.