How to send this body from an integration to an externalsystem

From appian i Need to send the below data using integration

{
 
"Guid": "String",

"TypeId":  1

"Comment": "string",

"addColleague": {

"email": "string",  "Name": "string", "Flag": true, "deletedFlag": true, "ID": 2, "idFromsender": "string", "addDeleteUpdate": 1 }

}

How to send the data in the above format from integration .Can I use CDT's 

I have one CDT  were GUid,comment, email,name and idfromsender are present



Can someone please guide

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to ZAINAB

    So, I assume that you have some data structure in a process variable.

    My suggestion is, to first hard code the data in the integration and check if it works. Then add one rule input to pass in the whole data structure, or multiple rule inputs to pass individual fields. Then change the dictionary in the body to use the rule inputs. Once this works, call the integration in from the process.

Children