Coefficient Related Messages
Error codes for coefficient management, including null checks, existence validation, and value constraints.
Overview
| Code | Message | Description |
|---|---|---|
CFM001 | 係数IDはnullにできません。有効な係数IDを提供してください。 | Required parameter coefficient ID is null. |
CFM002 | ID '{0}' の係数が存在しません。係数IDを確認して再試行してください。 | Coefficient not found with the provided ID. |
CFM003 | 係数の更新リクエストはnullにできません。有効な係数オブジェクトを提供してください。 | Required parameter coefficient update request is null. |
CFM004 | 係数作成リクエストはnullにできません。有効な係数オブジェクトを提供してください。 | Required parameter coefficient create request is null. |
CFM005 | 指定された名前'{0}'、デバイスID'{1}'、およびプランID'{2}'を持つ係数はすでに存在します。入力を確認してください。 | Coefficient already exists with the same name, device ID, and plan ID. |
CFM006 | 係数の値は正の数でなければなりません。有効な正の値を提供してください。 | Coefficient value must be a positive number. |
CFM007 | 係数の値は必須です。有効な係数の値を提供してください。 | Required parameter coefficient value is missing. |
Error Code Details
CFM001
Message
係数IDはnullにできません。有効な係数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
ID '{0}' の係数が存在しません。係数IDを確認して再試行してください。
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
係数の更新リクエストはnullにできません。有効な係数オブジェクトを提供してください。
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
係数作成リクエストはnullにできません。有効な係数オブジェクトを提供してください。
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
指定された名前'{0}'、デバイスID'{1}'、およびプランID'{2}'を持つ係数はすでに存在します。入力を確認してください。
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
係数の値は正の数でなければなりません。有効な正の値を提供してください。
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
係数の値は必須です。有効な係数の値を提供してください。
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.