I need to invoke a process which doesn\'t require any input from the user, just a trigger. I plan to use POST /uri without a body to trigger the process. I want to know if t
Yes, it's OK to send a POST request without a body and instead use query string parameters. But be careful if your parameters contain characters that are not HTTP valid you will have to encode them.
For example if you need to POST 'hello world' to and end point you would have to make it look like this: http://api.com?param=hello%20world