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": "f2bce9e8-6cd1-42fd-b908-90ad357fdc38",
"Date": "2026-07-18T12:36:09.5711699+00:00",
"Message": "sample string 3",
"UserId": "aa141a27-f60d-47f6-b564-c918db01452e"
}
text/xml
Sample:
<Error xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AGO_API"> <Date>2026-07-18T12:36:09.5711699+00:00</Date> <Id>f2bce9e8-6cd1-42fd-b908-90ad357fdc38</Id> <Message>sample string 3</Message> <UserId>aa141a27-f60d-47f6-b564-c918db01452e</UserId> </Error>