I have an api url and the body in json format to return data. Can this be done in SSRS? I can use fiddler and enter the post url and the body and get the json data back. I need to do this in SSRS to report on the returned data.
I have an api url and the body in json format to return data. Can this be done in SSRS? I can use fiddler and enter the post url and the body and get the json data back. I need to do this in SSRS to report on the returned data.
Not possible at the moment natively in SSRS.
SSRS doesn't support an API or JSON as a data source.
You would need to write something like a CLR procedure to call the API, load the JSON into a table and then pull that table out using a native SQL SELECT and then point the SSRS report to execute the procedure instead.
18 People are following this question.