Hi,
i am trying to read the execution status of the issueId with below script and i am not getting response for my issueId
curl --include \
--request GET \
--header "Content-Type: application/json" \
--data-binary "{
\"issueId\": 432093
}" \
'https://localhost.com/rest/zapi/latest/execution'
where as if i use the below scrips, it works perfectly. what is the reason for the same.
curl GET -H "Content-Type: application/json" https://localhost.com/rest/zapi/latest/execution?issueId=432093
note: for "localhost" , i used our own url.
Regards,
Anand