I am trying to translate the following curl command to a NR http request node. Of course, I could just use an exec node and the curl CLI, but that would be too easy.
Have you set the Method to PUT in the request node and provided an empty object, in the form of a payload?
I would also suggest adding another header -> Content-Type set to application/json By default it will be set to multipart/form-data and this maybe what is happening.
EDIT:
Its the other way around
so check the method, and attach an empty object
Yea, the injection is empty topic and empty payload. But I realized payload actually must be '{}' not null. That was the trick the given REST API required.