David Migl
07/12/2023, 10:10 PM"title": {{ flow.name }}/{{ flow_run.name }} observed in state `{{ flow_run.state.name }}` at {{ flow_run.state.timestamp }}.
"Flow ID": {{ flow_run.flow_id }}
"Flow run ID": {{ flow_run.id }}
"Flow run URL": {{ flow_run|ui_url }}
"State message": {{ flow_run.state.message }}
I would instead like to send a payload where the keys , i.e:
{
"title": ... ,
"Flow ID": {{ flow_run.flow_id }} ,
"Flow run ID": {{ flow_run.id }} ,
"Flow run URL": {{ flow_run|ui_url }},
"State message": {{ flow_run.state.message }}
}
Tim-Oliver
07/14/2023, 2:50 PM--data
if I would submit the request via curl?David Migl
07/20/2023, 9:07 PM"message": "<body value here>"
as part of a payloadJake Kaplan
07/21/2023, 2:40 PMDavid Migl
07/21/2023, 4:43 PMhttps://user-images.githubusercontent.com/20429502/237680520-47b08fc0-16a9-4900-a8fa-4fda43b52a0d.png▾
Jake Kaplan
07/21/2023, 5:18 PMDavid Migl
07/21/2023, 5:21 PM"message": <body>
I would like to send a payload like:
"flow_name": "{{flow.name}}" ,
...
etc etc..
Jake Kaplan
07/21/2023, 10:08 PMTim-Oliver
07/24/2023, 2:04 PMcurl -X POST <https://api.airtable.com/v0/XXXXXXXXXX/webhook-test> \
-H "Authorization: Bearer XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" \
-H "Content-Type: application/json" \
--data '{
"records": [
{
"fields": {
"Name": "Tim"
}
},
{
"fields": {
"Name": "Oliver"
}
}
]
}'
As far as I could follow along, this is currently not possible with the cloud UI. I think this would be super useful 🙂David Migl
07/24/2023, 3:41 PM