POST api/App/SendErrorNotification
Request Information
URI Parameters
None.
Body Parameters
ErrorLog| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| error | string |
None. |
|
| error_time | date |
None. |
|
| userid | integer |
None. |
|
| stack | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"error": "sample string 2",
"error_time": "2025-11-08T14:56:23.7985907+05:30",
"userid": 1,
"stack": "sample string 3"
}
application/xml, text/xml
Sample:
<ErrorLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MatchDealsWebAPI_New.Models"> <error>sample string 2</error> <error_time>2025-11-08T14:56:23.7985907+05:30</error_time> <id>1</id> <stack>sample string 3</stack> <userid>1</userid> </ErrorLog>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |