Am looking for some advice on the best way to configure an http output node (i wish to perform a post using JSON/RPC to an end point,
My payload would look like the following:
{
"jsonrpc":"2.0",
"id":"0",
"method":"EAPI.APINAME",
"params":
{
"ServiceID": XXXXXX,
"Password": "XXXXXX",
"Jobs":
[
{
"Subscriber":"MSISDN",
"Variables":
{
"FirstName":"NAME"
}
}
]
}
}
Question:
Using the HTTP node is it possible to pass fields [MSISDN] and [NAME] into the body which is configured in the node as opposed to generation of a file which is passed on a field to the http node.
The data (MSISDN & NAME) itself is being pulled from a database.
thanks for any advice.
Martin