Query URLs

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

The URL must be used with the default base URL value: <slURL>.

Action Method URL
Get the contexts and parameters GET /queries/{queryId}/parameters
Respond to the contexts and parameters PUT /queries/{queryId}/parameters
Action Method URL
Create a query POST /queries
Delete a query DELETE /queries/{queryId}
Get the details of a query GET /queries/{queryId}
Get the list of queries GET /queries
Action Method URL
Access the OData service GET /queries/{queryId}/data.svc/
Get the query metadata GET /queries/{queryId}/data.svc/$metadata
Get the query result content GET /queries/{queryId}/data.svc/{flowName}
Get the number of records GET /queries/{queryId}/data.svc/{flowName}/$count
Get the record at rowIndex GET /queries/{queryId}/data.svc/{flowName}({rowIndex})
Get the record content GET /queries/{queryId}/data.svc/{flowName}({rowIndex})/{fieldName}
Get the raw content of a record GET /queries/{queryId}/data.svc/{flowName}({rowIndex})/{fieldName}/$value
Get the content after offset GET /queries/{queryId}/data.svc/{flowName}?$skip={offset}
Get the n first rows GET /queries/{queryId}/data.svc/{flowName}?$top={limit}
Get the n first rows after offset GET /queries/{queryId}/data.svc/{flowName}?$skip={offset}&$top={limit}