curl --request POST \
--url https://prod-contactswing-fastapi-962560522883.us-central1.run.app/v2/_actions \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"action_timing": "<string>",
"type": "<string>",
"webhook": {
"url": "<string>",
"method": "<string>",
"mandatory": true,
"headers": {
"Content-Type": "<string>"
},
"body": [
{
"type": "<string>",
"values": {
"data": "<string>"
}
}
],
"static_body": "<string>",
"required": [
"<string>"
],
"response": {
"prompt": "<string>"
},
"run_before_call": true,
"type": "<string>"
}
}
'