I have an api link as following
https://hostaddress.com/api/v1/query
The API currently supports one endpoint: query. The query endpoint allows the user to make queries.
The query endpoint must be accessed with the GET HTTP method.
Requests to the query endpoint must be sent with the GET HTTP method. The required query parameter defines the query to be executed.It is a JSON object that is URL-encoded and passed as a parameter to the request.
URL encodes the query object and passes it as a query parameter.
For example, the following query object:
{
"dataset": "my_data",
"view": "time",
"start": 1458250809000,
"end": 1458250810000,
"timezone_offset": -25200000,
"measure": {
"aggregator": "unique_count",
"column": "impression"
},
"filter": "`action.event` = \"appDownloadLink\"",
"sampled": true,
"group_by": ["browser_type"],
"max_groups": 10,
"compute_all_others": false
}
How do i test for the response from POSTMAN by passing the query object as querystring?