curl --request POST \
--url https://prod-contactswing-fastapi-962560522883.us-central1.run.app/v2/_campaign/create_with_touchpoint \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"type": "<string>",
"business_goal": "<string>",
"touchpoint": {
"name": "<string>",
"type": "<string>",
"status": "<string>",
"start_at": "<string>",
"assistant_id": 123,
"additional_settings": {
"execution_days": [
"<string>"
],
"start_hour": 123,
"end_hour": 123,
"time_zone": "<string>",
"from_numbers": [
"<string>"
]
}
},
"customer_details": [
{
"id": "<string>",
"to_number": "<string>"
}
],
"from_number": "<string>"
}
'