Hello,
I’m trying to use http request, where simple http auth is used. And body contains query in json format as below:
Body -
{ “query”:“select a.b.ID as [b.ID], a.b.date as [b.date], a.b.status as [b.status] from sample where a.b.status = ‘open’ AND a.b.date > ‘03/20/2020’ AND a.b.ID in (‘1’, ‘2’, ‘3’, ‘4’, ‘5’)”}
sending username and password, chosen body format as application/json and no other parameters were sent/headers.
Doing the same in postman yields output, where as the studio is throwing 415 status code. Do you know where its going wrong?
Thanks!