Hello,
I am trying to make an InvokeHttp (in ApacheNifi 1.25.0) and i would like to make a Post request with this body:
{
"dummy" : {
"value" : "C",
"type" : "Property"
},
"loc" : {
"type" : "property",
"value" : {
"coordinates" : [ 111.3, 222.1],
"type" : "Point"
}
},
"te" : "oall",
"@dummy" : [ "linkd" ],
"id" : "idhere"
}
I have Request body Enable = true in invokeHttp but nothing happend.
I have tried to use evaluateJsonPath for each variable and attributesToJson proccessor but it only sents the single line variables (id and te).
Can you provide me some help please?