I am developing a very basic Automation APP in app studio to call an external webhook and return some values.
What i can’t get working is getting the automation to provide my return values to the next step.
None of the examples show how to deal with values returned from the api calls.
I have tried the “provides” block which is in the schema but not documented and that didn’t have any effect.
I have also tried the map object which did show the map popup but none of my fields were displayed
“map”: {
“label”: “Map OneSeed Results to Contact Fields”,
“describe_source”: {
“label”: “OneSeed API Response”,
“options”: {
“!pipe”: [
{
“!jq”: “[{"value":"success_status", "display":"Success Status (true/false)"}, {"value":"result_message", "display":"Result Message"}, {"value":"tree_link", "display":"Tree Link"}, {"value":"oneseed_id", "display":"OneSeed Contact ID"}]”
}
]
}
},
“describe_target”: {
“label”: “ActiveCampaign Contact Fields”,
“options”: {
“!resource”: “ActiveCampaignContact.fields”
}
}
}
},
Does anyone have a working example of a config that returns values from an outbound API call to be used to either update the contact or in the if/else block etc.
