Customize the POST body od External API activity
Hello community,
How to send a POST request to an external API with the following body :
{
"name" : "Jonas",
"internal name" : "sbx2000",
"country" : [
["2000", "paris"],
[ "2001", "usa"]
]
}
Note: when using the external API activity, the data added as input looks like this in the POST body :
{ "data":[
{ "name" : "Jonas"},
{ "internal name" : "sbx2000"},
{"country" : "country"}
]}
PS. Countries are a custom resource that will be embedded from a query activity.
Is there any way to customize the body of the JSON that will be sent in the call?
Please advice on this matter.