curl --location --request POST '/meetingspace/iftt_event' \
--header 'X-API-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"meeting_space_id": "0a8c781d-bd46-4615-8f6f-bd329a55eb4d",
"name": "string",
"notification_frequency": "one_time",
"is_active": true,
"conditions": [
{
"name": "string",
"type": "sensor",
"trigger_value": "reserved",
"operator": "=="
}
],
"logical_equation": "string",
"actions": [
{
"action_type": "send_email",
"action_config": {
"url": "http://example.com",
"method": "POST",
"auth_type": "bearer",
"auth_token": "string",
"username": "string",
"password": "string",
"headers": {
"property1": "string",
"property2": "string"
},
"body": {}
}
}
]
}'