| POST | /errors/ | Save error to log |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CompanyId | body | Guid? | No | The company id, if empty will use the company id for the user you are logged in with. |
| ExceptionName | body | string | Yes | |
| ExceptionMessage | body | string | Yes | |
| ExceptionSource | body | string | Yes | |
| InnerExceptionName | body | string | Yes | |
| StackTrace | body | string | Yes | |
| URL | body | string | Yes | |
| LoggedInUser | body | string | Yes | |
| IPAddress | body | string | Yes | |
| Request | body | string | Yes | |
| Session | body | string | Yes |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CompanyId | form | Guid | No | |
| Id | form | int | No | |
| ExceptionName | form | string | Yes | |
| ExceptionMessage | form | string | Yes | |
| ExceptionSource | form | string | Yes | |
| InnerExceptionName | form | string | Yes | |
| StackTrace | form | string | Yes | |
| URL | form | string | Yes | |
| LoggedInUser | form | string | Yes | |
| Visible | form | bool | No | |
| IPAddress | form | string | Yes | |
| CreatedDate | form | DateTime | No | |
| Request | form | string | Yes | |
| Session | form | string | Yes |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /errors/ HTTP/1.1
Host: api.bokamera.se
Accept: application/json
Content-Type: application/json
Content-Length: length
{"CompanyId":"00000000-0000-0000-0000-000000000000","ExceptionName":"String","ExceptionMessage":"String","ExceptionSource":"String","InnerExceptionName":"String","StackTrace":"String","URL":"String","LoggedInUser":"String","IPAddress":"String","Request":"String","Session":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Id":0,"ExceptionName":"String","ExceptionMessage":"String","ExceptionSource":"String","InnerExceptionName":"String","StackTrace":"String","URL":"String","LoggedInUser":"String","Visible":false,"IPAddress":"String","Request":"String","Session":"String"}