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

NameDescriptionTypeAdditional information
id

The identifier

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

A Log

BasicErrorLog
NameDescriptionTypeAdditional 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": "9f86e08e-62b6-4ec6-a0d8-9ffc14664ab2",
  "DateTime": "2026-02-04T01:50:25.4814066Z",
  "Level": 0,
  "Url": "sample string 3",
  "Message": "sample string 4",
  "Message2": "sample string 5",
  "Component": 0,
  "ReferrerUrl": "sample string 6",
  "UserId": "6e8efebb-9f99-46a6-aadd-b00ff4da1520",
  "Username": "sample string 8"
}

text/html

Sample:
{"Id":"9f86e08e-62b6-4ec6-a0d8-9ffc14664ab2","DateTime":"2026-02-04T01:50:25.4814066Z","Level":0,"Url":"sample string 3","Message":"sample string 4","Message2":"sample string 5","Component":0,"ReferrerUrl":"sample string 6","UserId":"6e8efebb-9f99-46a6-aadd-b00ff4da1520","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-02-04T01:50:25.4814066+00:00</DateTime>
  <Id>9f86e08e-62b6-4ec6-a0d8-9ffc14664ab2</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>6e8efebb-9f99-46a6-aadd-b00ff4da1520</UserId>
  <Username>sample string 8</Username>
</BasicErrorLog>