Skip to main content

Get NQE query execution result

GET 

/networks/:networkId/nqe-executions/:executionKey/result

Returns the result of an NQE query execution whose status is COMPLETED and outcome is OK. The response contains the rows produced by the query in the items property; use the offset and limit query parameters to page through large result sets.

An executionKey remains valid until the next major release of Forward Enterprise; afterwards, this endpoint returns a 404 error for that key.

Request

Responses

The JSON response contains the query result rows in the items property.

If you wish to consume rows incrementally, without loading the entire result set into memory at once, send the Accept: application/jsonl header to get the result in the JSON Lines (newline-delimited JSON) format. The response will contain one query result row per line.