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 | No | |
InnerExceptionName | body | string | Yes | |
StackTrace | body | string | Yes | |
URL | body | string | Yes | |
LoggedInUser | body | string | No | |
IPAddress | body | string | No | |
Request | body | string | No | |
Session | body | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CompanyId | form | Guid | No | |
Id | form | int | No | |
ExceptionName | form | string | No | |
ExceptionMessage | form | string | No | |
ExceptionSource | form | string | No | |
InnerExceptionName | form | string | No | |
StackTrace | form | string | No | |
URL | form | string | No | |
LoggedInUser | form | string | No | |
Visible | form | bool | No | |
IPAddress | form | string | No | |
CreatedDate | form | DateTime | No | |
Request | form | string | No | |
Session | form | string | No |
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"}