I want to create new ASA job using rest end point with input output and query for job. I've followed this link
https://docs.microsoft.com/en-us/rest/api/streamanalytics/stream-analytics-job
and formed below url according to above link
https://management.azure.com/subscriptions/{subscription-id}/ resourcegroups/{resourcegroup-name}/providers/Microsoft.StreamAnalytics/ streamingjobs/dynamicStream?api-version=2015-10-01
Though I've provided api version query parameter, postman is giving me below error
{
"error": {
"code": "MissingApiVersionParameter",
"message": "The api-version query parameter (?api-version=) is required for all requests."
}
}
Any idea what am I doing wrong ? Api for creating new input for stream analytics job is behaving in same way
Thank you for reading !!!