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": "d8b051ff-06f1-4cc8-aa84-ce5c227fb9b8",
"DateTime": "2026-08-24T23:44:49.7969114Z",
"Level": 0,
"Url": "sample string 3",
"Message": "sample string 4",
"Message2": "sample string 5",
"Component": 0,
"ReferrerUrl": "sample string 6",
"UserId": "a9157de6-a848-4f0d-b534-b6ff0ec42d46",
"Username": "sample string 8"
}
text/html
Sample:
{"Id":"d8b051ff-06f1-4cc8-aa84-ce5c227fb9b8","DateTime":"2026-08-24T23:44:49.7969114Z","Level":0,"Url":"sample string 3","Message":"sample string 4","Message2":"sample string 5","Component":0,"ReferrerUrl":"sample string 6","UserId":"a9157de6-a848-4f0d-b534-b6ff0ec42d46","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-08-24T23:44:49.7969114+00:00</DateTime> <Id>d8b051ff-06f1-4cc8-aa84-ce5c227fb9b8</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>a9157de6-a848-4f0d-b534-b6ff0ec42d46</UserId> <Username>sample string 8</Username> </BasicErrorLog>