GET admin/error-reports/logs/{id}
Get a log by its identifier
Request Information
URI
https://ofd-api.blueprintcpq.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": "5fda1532-1fbc-49a0-a821-682a5a6f4ddd",
"DateTime": "2026-03-16T21:33:03.510789Z",
"Level": 0,
"Url": "sample string 3",
"Message": "sample string 4",
"Message2": "sample string 5",
"Component": 0,
"ReferrerUrl": "sample string 6",
"UserId": "8cbf8423-d6ac-4acd-b016-c1bc2496baf2",
"Username": "sample string 8"
}
text/html
Sample:
{"Id":"5fda1532-1fbc-49a0-a821-682a5a6f4ddd","DateTime":"2026-03-16T21:33:03.510789Z","Level":0,"Url":"sample string 3","Message":"sample string 4","Message2":"sample string 5","Component":0,"ReferrerUrl":"sample string 6","UserId":"8cbf8423-d6ac-4acd-b016-c1bc2496baf2","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-03-16T21:33:03.510789+00:00</DateTime> <Id>5fda1532-1fbc-49a0-a821-682a5a6f4ddd</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>8cbf8423-d6ac-4acd-b016-c1bc2496baf2</UserId> <Username>sample string 8</Username> </BasicErrorLog>