workflow does not trigger

workflow does not trigger

Hi, 
I have a workflow that creates some activities if the status, ("Huidige Status"), is set to "1. Actief". When I manualy change the status to 1. Actief the workflow does get triggered, but now I am writing a function that should change the status to 1. Actief and trigger the workflow named "ActiesBijActiveren_Alarm". Using my function the status does change to 1. Actief, but the workflow does not get triggered. This is the code:
  1. ClientID = 11111;
  2. Clientstatus = Map();
  3. Clientinfo = zoho.crm.getRecordById("Contacts",ClientID);
  4. Clientstatus1 = Clientinfo.getJson("Huidige_Status");
  5. Clientstatus2 = Clientstatus1.tostring();
  6. if(Clientstatus2 == "Verzonden")
  7. {
  8. test = zoho.crm.updateRecord("Contacts",ClientID,{"Huidige_Status":"1. Actief"},{"trigger":["ActiesBijActiveren_Alarm"]});
  9. info test;
  10. }