Query URLs

This is a reference to the URLs available for working with queries and getting query results.

In the tables below are indicated the 4.0 and/or 4.1 releases from which each call is supported. The URL must be used with the default base URL value: <slURL>.

Action Method URL Release
Getting the List of Parameters GET /queries/{queryId}/parameters 4.1 SP3
Responding to Parameters PUT /queries/{queryId}/parameters 4.1 SP3
Action Method URL Release
Creating a Query POST /queries 4.1 SP2
Deleting a Query DELETE /queries/{queryId} 4.1 SP2
Getting the Details of a Query GET /queries/{queryId} 4.1 SP2
Getting the List of Queries GET /queries 4.1 SP2
Action Method URL Release
Accessing the OData Service GET /queries/{queryId}/data.svc/ 4.1 SP2
Getting the OData Flow Metadata GET /queries/{queryId}/data.svc/$metadata 4.1 SP2
Getting the OData Flow Content GET /queries/{queryId}/data.svc/{flowName} 4.1 SP2
OData Content - Getting the Row Count GET /queries/{queryId}/data.svc/{flowName}/$count 4.1 SP2
OData Content - Getting the First Row GET /queries/{queryId}/data.svc/{flowName}({rowIndex}) 4.1 SP2
OData Content - Getting Property Content GET /queries/{queryId}/data.svc/{flowName}({rowIndex})/{fieldName} 4.1 SP2
OData Content - Getting Property Raw Content GET /queries/{queryId}/data.svc/{flowName}({rowIndex})/{fieldName}/$value 4.1 SP2
OData Content - Getting Content After Offset GET /queries/{queryId}/data.svc/{flowName}?$skip={offset} 4.1 SP2
OData Content - Getting the First N Rows GET /queries/{queryId}/data.svc/{flowName}?$top={limit} 4.1 SP2
OData Content - Getting the First N Rows After Offset GET /queries/{queryId}/data.svc/{flowName}?$skip={offset}&$top={limit} 4.1 SP2