Device Related Messages
Error codes related to device operations, including device lookup, registration conflicts, and device availability.
Overview
| Code | Message | Description |
|---|---|---|
DVC001 | Device {0} is unknown | No device was found with the provided ID or identifier. |
DVC002 | Device {0} has already existed | A device with the provided identifier already exists, violating the unique constraint. |
DVC003 | Device ID must not be null | The device ID is required but was not provided. |
DVC004 | Device '{0}' is not online. | The specified device is currently offline and cannot be used for invocations. |
Error Code Details
DVC001
Message
Device {0} is unknown
Description
No device was found with the provided ID or identifier.
Root Cause
- The device ID
{0}does not match any registered device.
Resolution
- Verify the device ID and ensure the device is registered in the system.
DVC002
Message
Device {0} has already existed
Description
A device with the provided identifier already exists, violating the unique constraint.
Root Cause
- A device with the identifier
{0}was previously registered.
Resolution
- Use a different device identifier.
- Check existing devices before registering a new one.
DVC003
Message
Device ID must not be null
Description
The device ID is required but was not provided.
Root Cause
- The
deviceIdfield was not included in the request.
Resolution
- Provide a valid device ID in the request.
DVC004
Message
Device '{0}' is not online.
Description
The specified device is currently offline and cannot be used for invocations.
Root Cause
- The device
{0}is not connected or is in an offline state.
Resolution
- Wait for the device to come online and retry.
- Select a different device that is currently online.