I'm trying to acknowledge triggers via the API with a 3rd party.
I can successfully login, retrieve my token, but when I post back with the following code, I get -32600 Invalid Response. data: JSON-RPC version is not specified.
My post:
The response I get is:
I'm unsure why I get JSON-rpc version not specified when I am clearly specifying it in the initial post.
Any help here?
Thank you!
I can successfully login, retrieve my token, but when I post back with the following code, I get -32600 Invalid Response. data: JSON-RPC version is not specified.
My post:
Code:
{
"jsonrpc": "2.0",
"method": "event.acknowledge",
"params": {
"eventids": "2412321",
"message": "Acknowledged by Username"
},
"id": 1,
"auth": <authkey>
}
Code:
{
"jsonrpc": "2.0",
"error": {
"code": -32600,
"message": "Invalid Request.",
"data": "JSON-rpc version is not specified."
},
"id": null
}
Any help here?
Thank you!
Comment