GET api/VDPLog/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
VDPLogData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ClientId | globally unique identifier |
None. |
|
| VDPReportId | globally unique identifier |
None. |
|
| SessionDateTime | date |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Updated | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "7ad8be4a-6579-4cf9-9681-09f8713ee2a4",
"ClientId": "a840119a-5f1a-4c75-a81b-db890fe9136d",
"VDPReportId": "9b49f8e8-5e86-4f75-86da-7643bbabf9f3",
"SessionDateTime": "2025-12-15T23:37:24.6507017-05:00",
"Identifier": "sample string 3",
"Name": "sample string 4",
"Updated": "2025-12-15T23:37:24.6507017-05:00"
}
application/xml, text/xml
Sample:
<VDPLogData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <ClientId>a840119a-5f1a-4c75-a81b-db890fe9136d</ClientId> <Id>7ad8be4a-6579-4cf9-9681-09f8713ee2a4</Id> <Identifier>sample string 3</Identifier> <Name>sample string 4</Name> <SessionDateTime>2025-12-15T23:37:24.6507017-05:00</SessionDateTime> <Updated>2025-12-15T23:37:24.6507017-05:00</Updated> <VDPReportId>9b49f8e8-5e86-4f75-86da-7643bbabf9f3</VDPReportId> </VDPLogData>