GET gesconfiguration/logtableconfiguration
Retrieves transversal log table configuration data from the PLANET database that applies to all clients.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Lluni.Models.Common.Wip.LogTableConfiguration| Name | Description | Type | Additional information |
|---|---|---|---|
| Table | string |
None. |
|
| Description | string |
None. |
|
| Sql | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Table": "sample string 1",
"Description": "sample string 2",
"Sql": "sample string 3"
},
{
"Table": "sample string 1",
"Description": "sample string 2",
"Sql": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfLogTableConfiguration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Wip">
<LogTableConfiguration>
<Description>sample string 2</Description>
<Sql>sample string 3</Sql>
<Table>sample string 1</Table>
</LogTableConfiguration>
<LogTableConfiguration>
<Description>sample string 2</Description>
<Sql>sample string 3</Sql>
<Table>sample string 1</Table>
</LogTableConfiguration>
</ArrayOfLogTableConfiguration>