Data360 Analyze

Welcome to the Data360 Analyze community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Here are some useful links where you can find more information:

Product Announcements  Product Documentation  Ideas Portal

Discussions

Members

Resources

Events

 View Only
  • 1.  http node - RPC request

    Employee
    Posted 11-15-2017 08:02

    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

     

     



  • 2.  RE: http node - RPC request

    Employee
    Posted 11-16-2017 03:57

    Just a quick update on this. I managed to figure out how to do it by constructing the JSON/RPC payload using a transform node with differing Script Properties and embedding passed in fields which constructed the required payload. So all working now.