GET api/Errors/GetError/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Error| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Date | date |
None. |
|
| Message | string |
None. |
|
| UserId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "ba9c4a83-ea02-4d96-bd63-69658aec17c1",
"Date": "2026-09-16T00:14:59.7391188+00:00",
"Message": "sample string 3",
"UserId": "f85ccde5-c0a6-4f94-b46f-aaeefe54ef8b"
}
text/xml
Sample:
<Error xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AGO_API"> <Date>2026-09-16T00:14:59.7391188+00:00</Date> <Id>ba9c4a83-ea02-4d96-bd63-69658aec17c1</Id> <Message>sample string 3</Message> <UserId>f85ccde5-c0a6-4f94-b46f-aaeefe54ef8b</UserId> </Error>