curl --location --request PUT '/workflows//steps/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"step": {
"id": "string",
"name": "string",
"type": "action",
"action": {
"type": "ai_assistant",
"property1": "string",
"property2": "string"
},
"conditionGroup": {
"logic": "AND",
"conditions": [
{
"field": "string",
"operator": "equals",
"value": "string",
"aiPrompt": "string"
}
]
},
"trueBranch": [
{}
],
"falseBranch": [
{}
]
}
}'