GET admin/error-reports/logs/{id}
Get a log by its identifier
Request Information
URI
https://scoregroup-uat-api.xaitcpq.net/admin/error-reports/logs/{id}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The identifier |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
A Log
BasicErrorLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| DateTime | date |
None. |
|
| Level | LogLevel |
None. |
|
| Url | string |
None. |
|
| Message | string |
None. |
|
| Message2 | string |
None. |
|
| Component | CPQComponent |
None. |
|
| ReferrerUrl | string |
None. |
|
| UserId | globally unique identifier |
None. |
|
| Username | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "3166c4ac-8fd1-4256-8dfd-6ccd0a9a3d2b",
"DateTime": "2026-05-09T12:21:36.6606984Z",
"Level": 0,
"Url": "sample string 3",
"Message": "sample string 4",
"Message2": "sample string 5",
"Component": 0,
"ReferrerUrl": "sample string 6",
"UserId": "ed8b79c2-1f3f-4800-bdf1-55e3490799ad",
"Username": "sample string 8"
}
text/html
Sample:
{"Id":"3166c4ac-8fd1-4256-8dfd-6ccd0a9a3d2b","DateTime":"2026-05-09T12:21:36.6606984Z","Level":0,"Url":"sample string 3","Message":"sample string 4","Message2":"sample string 5","Component":0,"ReferrerUrl":"sample string 6","UserId":"ed8b79c2-1f3f-4800-bdf1-55e3490799ad","Username":"sample string 8"}
application/xml, text/xml
Sample:
<BasicErrorLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels"> <Component>WebAPI</Component> <DateTime>2026-05-09T12:21:36.6606984+00:00</DateTime> <Id>3166c4ac-8fd1-4256-8dfd-6ccd0a9a3d2b</Id> <Level>Debug</Level> <Message>sample string 4</Message> <Message2>sample string 5</Message2> <ReferrerUrl>sample string 6</ReferrerUrl> <Url>sample string 3</Url> <UserId>ed8b79c2-1f3f-4800-bdf1-55e3490799ad</UserId> <Username>sample string 8</Username> </BasicErrorLog>