GET api/logs?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Log| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Message | string |
None. |
|
| InnerException | string |
None. |
|
| DateTime | date |
None. |
|
| MethodName | string |
None. |
|
| User | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<Log xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCT.VerifyDoc.API.Models"> <DateTime>2026-05-28T22:39:49.5344989+03:00</DateTime> <Id>1</Id> <InnerException>sample string 3</InnerException> <Message>sample string 2</Message> <MethodName>sample string 5</MethodName> <User>sample string 6</User> </Log>
application/json, text/json
Sample:
{
"DateTime": "2026-05-28T19:39:49.534Z",
"Id": 1,
"User": "sample string 6",
"MethodName": "sample string 5",
"InnerException": "sample string 3",
"Message": "sample string 2"
}