curl --request POST \
--url https://api.closebot.com/bot/{id}/source/{sourceId} \
--header 'Content-Type: application/json' \
--header 'X-CB-KEY: <api-key>' \
--data '
{
"tags": [
{
"name": "<string>",
"approveDeny": true,
"id": "<string>"
}
],
"tagFilterConfig": {
"operator": "<string>",
"groups": [
{
"operator": "<string>",
"rules": [
{
"tagName": "<string>",
"tagId": "<string>",
"condition": "<string>"
}
]
}
]
},
"channels": [
"<string>"
],
"personaNameOverride": "<string>",
"enabled": true,
"flowVariableValues": {}
}
'