Updating record(s) in Zoho Creator via API without triggering Workflows and/or Schedules

11/30/2023 03:21 PM - Comment(s) - By Jesus Sosa

  1. head = Map();
  2. head.put("environment","development");
  3. skiList = List();
  4. skiList.add("all");
  5. mapp = Map();
  6. mapp.put("Single_Line","check");
  7. datta = Map();
  8. datta.put("data",mapp);
  9. datta.put("skip_workflow",{"all"});
  10. var = invokeurl
  11. [
  12. url:"https://<base_url>/api/v2.1/<account_owner_name>/<app_link_name>/report/<report_link_name>"
  13. type :PATCH
  14. parameters:datta.toString()
  15. headers:head
  16. connection:"connection_name"
  17. ];
  18. info var;

Attention, the skip workflow parameter is supported only in API not in integration

Jesus Sosa

Share -