Return Codes
Errors
| Code | Name | Message | C++ | Python |
|---|---|---|---|---|
| 101 | PathNotFound | The file path does not exist. | ✅ | ✅ |
| 102 | UnreadableFile | The file was not readable. | ✅ | ✅ |
| 201 | MalformedJSON | The trigger(s) definition has malformed JSON | ✅ | ✅ |
| 202 | InvalidSCQLSyntax | The trigger(s) definition is valid JSON but one of the triggers has invalid SCQL. | ✅ | ✅ |
| 203 | UnsupportedSCQLVersion | The provided version in the trigger is unsupported in this version of the SDK. | ✅ | ✅ |
| 204 | InvalidType | The trigger definition is an invalid input type. | ✅ | |
| 301 | InvalidTriggerID | The provided trigger ID is invalid. | ✅ | |
| 302 | IncompleteTriggerState | A required field to evaluate the trigger is missing. | ✅ | ✅ |
| 303 | InvalidTriggerState | A required field has the wrong type or is invalid. | ✅ | |
| 304 | InvalidType | The type provided for this object did not match the declared type. | ✅ | |
| 305 | FieldNotFound | The provided field has not been declared. | ✅ | |
| 306 | FieldNotSet | The provided field has been declared, but not set. | ✅ | |
| 307 | InvalidAutotagDims | The autotag could not be evaluated because of a dimension mismatch. | ✅ | ✅ |
| 308 | InvalidAutotagId | "The provided autotag ID is invalid." | ✅ | |
| 401 | APIKeyRequired | API key is required to fetch device and trigger information | ✅ | |
| 402 | DeviceNotRegistered | Device not registered on Smart Capture | ✅ | |
| 501 | NotImplemented | This feature is not implemented. | ✅ |
Overview
- 1xx Codes: File read errors
- 2xx Codes: File loading errors
- 3xx Codes: Trigger and Field Definition Errors
- 4xx: Client instantiation Errors
Warning
| Code | Name | Message | C++ | Python |
|---|---|---|---|---|
| 1001 | TriggerNotEvaluated | The trigger was not evaluated because it was last fired within the sample frequency. | ✅ |
Info
| Name | Message | C++ | Python |
|---|---|---|---|
| TriggersLoaded | Loaded {int} triggers. | ✅ |
Updated 10 months ago
Did this page help you?