Error sending json payload in http post

New to SharpTools
Can’t figure out how to define the payload in an http post.
No matter what I do it gives an invalid json error:
Example:
{“Key”: “Value”}
gives an error.
Must be something super simple

Hi Keith-
Welcome to the community and thanks for posting!

If it’s literally using curly quotes, which unfortunately are the default on an iPad/iPhone, that could be the issue. Make sure to use straight quotes. :slight_smile:

“” BAD
"" GOOD

So a valid payload with straight quotes would look like:

{"Key": "Value"}

Thanks for your prompt reply. I was able to delete the rule and create a new one that worked fine. Not sure what the issue was, but it seems to have resolved.

1 Like