This commit is contained in:
fasching.herbert@outlook.com 2026-06-18 08:25:36 +02:00
parent 8dfa340e94
commit c88ce24635
3 changed files with 25 additions and 1 deletions

9
mautic_to_nova.mmd Normal file
View file

@ -0,0 +1,9 @@
flowchart TD
start([Start]) --> webhook_incomming[Daten von Webhook empfangen]
webhook_incomming --> evaluate{Neuer Lead?}
evaluate --> |Ja| create_lead_for_nova[Lead für Nova normalisieren]
evaluate --> |Nein| update_lead_for_nova[Update mit NovaId übergeben]
create_lead_for_nova --> send[An Nova senden]
send --> response{2xx Response?}
response --> |Ja| stop
response --> |Nein| stop