Coefficient Related Messages
Error codes for coefficient management, including null checks, existence validation, and value constraints.
Overview
| Code | Message | Description |
|---|---|---|
CFM001 | The coefficient ID cannot be null. Please provide a valid coefficient ID. | Required parameter coefficient ID is null. |
CFM002 | The requested coefficient with the ID '{0}' does not exist. Please check the coefficient ID and try again. | Coefficient not found with the provided ID. |
CFM003 | The coefficient update request cannot be null. Please provide a valid coefficient object. | Required parameter coefficient update request is null. |
CFM004 | The coefficient created request cannot be null. Please provide a valid coefficient object. | Required parameter coefficient create request is null. |
CFM005 | A coefficient with the specified name '{0}', device ID '{1}', and plan ID '{2}' already exists. Please check your input. | Coefficient already exists with the same name, device ID, and plan ID. |
CFM006 | The coefficient value must be a positive number. Please provide a valid positive value. | Coefficient value must be a positive number. |
CFM007 | The coefficient value is required. Please provide a valid coefficient value. | Required parameter coefficient value is missing. |
Error Code Details
CFM001
Message
The coefficient ID cannot be null. Please provide a valid coefficient ID.
Description
The coefficient ID parameter was not provided or is null. This is a required field for identifying a coefficient.
Root Cause
- The coefficient ID was not included in the request.
- The value was explicitly set to null.
Resolution
- Provide a valid, non-null coefficient ID in the request.
CFM002
Message
The requested coefficient with the ID '{0}' does not exist. Please check the coefficient ID and try again.
Description
No coefficient was found matching the provided ID. The record may not exist or the ID may be incorrect.
Root Cause
- The coefficient ID is incorrect or malformed.
- The coefficient was deleted before this request was made.
Resolution
- Verify the coefficient ID and ensure it exists in the system.
- Check for typos or formatting issues in the ID value.
CFM003
Message
The coefficient update request cannot be null. Please provide a valid coefficient object.
Description
The coefficient update request body was not provided or is null. A valid request object is required to perform an update.
Root Cause
- The request body was omitted from the API call.
- The request object was explicitly set to null.
Resolution
- Provide a valid coefficient request object in the request body.
CFM004
Message
The coefficient created request cannot be null. Please provide a valid coefficient object.
Description
The coefficient creation request body was not provided or is null. A valid request object is required to create a coefficient.
Root Cause
- The request body was omitted from the API call.
- The request object was explicitly set to null.
Resolution
- Provide a valid coefficient request object in the request body.
CFM005
Message
A coefficient with the specified name '{0}', device ID '{1}', and plan ID '{2}' already exists. Please check your input.
Description
A coefficient already exists with the same combination of name, device ID, and plan ID. Duplicate combinations are not permitted.
Root Cause
- A coefficient with the same name, device ID, and plan ID was already created.
- The request is attempting to create a duplicate entry.
Resolution
- Use a different combination of name, device ID, or plan ID.
- If updating an existing coefficient, use the update endpoint instead.
CFM006
Message
The coefficient value must be a positive number. Please provide a valid positive value.
Description
The coefficient value provided is not a positive number. Only positive numeric values are accepted.
Root Cause
- A zero, negative, or non-numeric value was provided for the coefficient.
Resolution
- Enter a positive numeric coefficient value greater than zero.
CFM007
Message
The coefficient value is required. Please provide a valid coefficient value.
Description
The coefficient value parameter was not included in the request. This is a required field.
Root Cause
- The coefficient value was omitted from the request.
- The value field was left empty or null.
Resolution
- Provide the required coefficient value in the request.