GET Tk-Ws/Export/GetQueries
Get the list of Queries from the web service user account's organization.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of QueryName | Description | Type | Additional information |
---|---|---|---|
Id |
The Id for the Query |
globally unique identifier |
None. |
Name |
The name of the query |
string |
None. |
Description |
The description of the query |
string |
None. |
IsPublic |
Whether the Query is public (can be used by anyone) or not |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "4080ef7a-d2bb-436d-b5d0-328213fb5e92", "Name": "sample string 2", "Description": "sample string 3", "IsPublic": true }, { "Id": "4080ef7a-d2bb-436d-b5d0-328213fb5e92", "Name": "sample string 2", "Description": "sample string 3", "IsPublic": true } ]
application/xml, text/xml
Sample:
<ArrayOfQueryWsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Core.WebService.Dto"> <QueryWsDto> <Description>sample string 3</Description> <Id>4080ef7a-d2bb-436d-b5d0-328213fb5e92</Id> <IsPublic>true</IsPublic> <Name>sample string 2</Name> </QueryWsDto> <QueryWsDto> <Description>sample string 3</Description> <Id>4080ef7a-d2bb-436d-b5d0-328213fb5e92</Id> <IsPublic>true</IsPublic> <Name>sample string 2</Name> </QueryWsDto> </ArrayOfQueryWsDto>