Records a new client-side error report.
Request Information
URI Parameters :
None.
Body Parameters :
error_log| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier |
Required |
| class_name |
Name of the class/type where the error was raised. |
string | |
| method_name |
Name of the method where the error was raised. |
string | |
| line_number |
Line number in the source file where the error was raised. |
integer | |
| message |
Error message, typically the exception message and/or stack trace. |
string | |
| date_generated |
Readonly system field: UTC date and time the error was generated on the client. |
date | |
| db_version |
Version of the local database schema on the client when the error occurred. |
integer | |
| object_info |
Free-text additional context about the object/state involved when the error occurred. |
string | |
| app_version |
Version of the client application when the error occurred. |
string |
Request Formats :
application/json, text/json
{
"id": "0f0daa5c-42ed-422f-bf75-da2756ab7b07",
"class_name": "sample string 2",
"method_name": "sample string 3",
"line_number": 4,
"message": "sample string 5",
"date_generated": "2026-09-16T09:22:08.8898216+00:00",
"db_version": 7,
"object_info": "sample string 8",
"app_version": "sample string 9"
}
application/xml, text/xml
<error_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <app_version>sample string 9</app_version> <class_name>sample string 2</class_name> <date_generated>2026-09-16T09:22:08.889Z</date_generated> <db_version>7</db_version> <id>0f0daa5c-42ed-422f-bf75-da2756ab7b07</id> <line_number>4</line_number> <message>sample string 5</message> <method_name>sample string 3</method_name> <object_info>sample string 8</object_info> </error_log>
Response Information
Resource Description :
IHttpActionResult containing the created error log.
error_log| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary key |
globally unique identifier |
Required |
| class_name |
Name of the class/type where the error was raised. |
string | |
| method_name |
Name of the method where the error was raised. |
string | |
| line_number |
Line number in the source file where the error was raised. |
integer | |
| message |
Error message, typically the exception message and/or stack trace. |
string | |
| date_generated |
Readonly system field: UTC date and time the error was generated on the client. |
date | |
| db_version |
Version of the local database schema on the client when the error occurred. |
integer | |
| object_info |
Free-text additional context about the object/state involved when the error occurred. |
string | |
| app_version |
Version of the client application when the error occurred. |
string |
Response Formats
application/json, text/json
{
"id": "8c49478e-cf6a-4a67-876d-42b0cecf9b44",
"class_name": "sample string 2",
"method_name": "sample string 3",
"line_number": 4,
"message": "sample string 5",
"date_generated": "2026-09-16T09:22:08.9097727+00:00",
"db_version": 7,
"object_info": "sample string 8",
"app_version": "sample string 9"
}
application/xml, text/xml
<error_log xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <app_version>sample string 9</app_version> <class_name>sample string 2</class_name> <date_generated>2026-09-16T09:22:08.909Z</date_generated> <db_version>7</db_version> <id>8c49478e-cf6a-4a67-876d-42b0cecf9b44</id> <line_number>4</line_number> <message>sample string 5</message> <method_name>sample string 3</method_name> <object_info>sample string 8</object_info> </error_log>