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": "a5a8db6f-c075-4d96-a43d-e52d6171e4bb", "Name": "sample string 2", "Description": "sample string 3", "IsPublic": true }, { "Id": "a5a8db6f-c075-4d96-a43d-e52d6171e4bb", "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>a5a8db6f-c075-4d96-a43d-e52d6171e4bb</Id> <IsPublic>true</IsPublic> <Name>sample string 2</Name> </QueryWsDto> <QueryWsDto> <Description>sample string 3</Description> <Id>a5a8db6f-c075-4d96-a43d-e52d6171e4bb</Id> <IsPublic>true</IsPublic> <Name>sample string 2</Name> </QueryWsDto> </ArrayOfQueryWsDto>