POST api/add/CrashReport
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| CrashReportInfoAPPDTO | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"Id": 1,
"LoggerName": "sample string 2",
"ShortMessage": "sample string 3",
"FullMessage": "sample string 4",
"UrlReferrer": "sample string 5",
"OSVersion": "sample string 6",
"Browser": "sample string 7",
"IpAddress": "sample string 8",
"CreatedOnUtc": "2025-12-09T18:47:20.3573392+08:00"
}
application/xml, text/xml
Sample:
<CrashReport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <LoggerName>sample string 2</LoggerName> <ShortMessage>sample string 3</ShortMessage> <FullMessage>sample string 4</FullMessage> <UrlReferrer>sample string 5</UrlReferrer> <OSVersion>sample string 6</OSVersion> <Browser>sample string 7</Browser> <IpAddress>sample string 8</IpAddress> <CreatedOnUtc>2025-12-09T18:47:20.3573392+08:00</CreatedOnUtc> </CrashReport>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"Result": 1,
"Data": {},
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<HttpResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Result>1</Result> <Data /> <Message>sample string 3</Message> </HttpResult>