Triggers in Boards

Triggers in Boards

Notes

While configuring the webhooks with the following triggers, the boards for which you would need to trigger the webhook should be selected. If you are creating a webhook through API, then the 'partitionIds' attribute is mandatory for this trigger type.

 

Member added to the board

Triggers the outgoing webhook when a new member is added to a board selected in the configuration.

Trigger Type : Member_Added_In_Board

 

  1. {
  2.   "payload": {
  3.     "id": "1006055504",
  4.     "name": "alaric",
  5.     "emailId": "alaric@zylker.com",
  6.     "url": "https://connect.zoho.com/portal/ourintranet/profile/1006055504",
  7.     "memberType": "4",
  8.     "userStatus": "active",
  9.     "userProfile": {
  10.       "firstName": "Carol Clark",
  11.       "lastName": "",
  12.       "timeZone": "Asia/Kolkata",
  13.       "customFields": {
  14.         "12266000000430041": {
  15.           "name": "Custom Field 3",
  16.           "type": "DATE"
  17.         },
  18.         "12266000000430035": {
  19.           "name": "Custom Field 2",
  20.           "type": "TEXTAREA"
  21.         },
  22.         "12266000000430029": {
  23.           "name": "Custom Field 1",
  24.           "type": "TEXT"
  25.         },
  26.         "12266000000430073": {
  27.           "name": "Custom Field 6",
  28.           "type": "FILE"
  29.         },
  30.         "12266000000430047": {
  31.           "name": "Custom Field 4",
  32.           "type": "SELECTBOX"
  33.         },
  34.         "12266000000430059": {
  35.           "name": "Custom Field 5",
  36.           "type": "MULTI_SELECTBOX"
  37.         }
  38.       }
  39.     }
  40.   },
  41.   "partition": {
  42.     "type": "5",
  43.     "id": "12266000000016001",
  44.     "name": "Large Board",
  45.     "url": "https://connect.zoho.com/portal/ourintranet/board/testing-board"
  46.   },
  47.   "triggeredBy": {
  48.     "type": "0",
  49.     "id": "61683612",
  50.     "name": "Michelle T",
  51.     "emailId": "michelle@zylker.com",
  52.     "url": "https://connect.zoho.com/portal/ourintranet/profile/61683612"
  53.   },
  54.   "triggerType": "Member_Added_In_Board",
  55.   "triggeredTime": "17 Nov 2021, 12:38 PM",
  56.   "triggeredTimeInMillis": "1637132933737",
  57.   "scope": {
  58.     "id": "12266000000002002",
  59.     "name": "Zylker",
  60.     "url": "https://connect.zoho.com/portal/ourintranet"
  61.   }
  62. }

 

Member removed from a board

Triggers the outgoing webhook when a member is removed from a board selected in the configuration.
Trigger Type : Member_Removed_From_Board


  1. {
  2.   "payload": {
  3.     "id": "62592875",
  4.     "name": "Emma Stone",
  5.     "emailId": "emma@zylker.com",
  6.     "url": "https://connect.zoho.com/portal/ourintranet/profile/62592875",
  7.     "memberType": "0",
  8.     "userStatus": "active",
  9.     "userProfile": {
  10.       "firstName": "Michelle",
  11.       "lastName": "+1",
  12.       "timeZone": "Asia/Kolkata",
  13.       "customFields": {
  14.         "12266000000430035": {
  15.           "name": "Custom Field 2",
  16.           "type": "TEXTAREA",
  17.           "value": "Custom Field Value"
  18.         },
  19.         "12266000000430041": {
  20.           "name": "Custom Field 3",
  21.           "type": "DATE",
  22.           "value": "05 Nov 2021"
  23.         },
  24.         "12266000000430073": {
  25.           "name": "Custom Field 6",
  26.           "type": "FILE",
  27.           "value": {
  28.             "fileId": "12266000000491135",
  29.             "size": "89134",
  30.             "name": "image.png",
  31.             "contentType": "image/png",
  32.             "downloadUrl": "https://connect.zoho.com/pulse/api/downloadFile?scopeID=12266000000002002&fileId=12266000000491135",
  33.             "extension": "png"
  34.           }
  35.         },
  36.         "12266000000430029": {
  37.           "name": "Custom Field 1",
  38.           "type": "TEXT",
  39.           "value": "Custom Field Value"
  40.         },
  41.         "12266000000430047": {
  42.           "name": "Custom Field 4",
  43.           "type": "SELECTBOX",
  44.           "value": "12266000000430049"
  45.         },
  46.         "12266000000430059": {
  47.           "name": "Custom Field 5",
  48.           "type": "MULTI_SELECTBOX",
  49.           "value": [
  50.             {
  51.               "id": "12266000000430061",
  52.               "name": "Option 1"
  53.             },
  54.             {
  55.               "id": "12266000000430063",
  56.               "name": "Option 2"
  57.             }
  58.           ]
  59.         }
  60.       }
  61.     }
  62.   },
  63.   "partition": {
  64.     "type": "5",
  65.     "id": "12266000000016001",
  66.     "name": "Large Board",
  67.     "url": "https://connect.zoho.com/portal/ourintranet/board/testing-board"
  68.   },
  69.   "triggeredBy": {
  70.     "type": "0",
  71.     "id": "61683612",
  72.     "name": "Michelle T",
  73.     "emailId": "michelle@zylker.com",
  74.     "url": "https://connect.zoho.com/portal/ourintranet/profile/61683612"
  75.   },
  76.   "triggerType": "Member_Removed_From_Board",
  77.   "triggeredTime": "17 Nov 2021, 12:38 PM",
  78.   "triggeredTimeInMillis": "1637132923797",
  79.   "scope": {
  80.     "id": "12266000000002002",
  81.     "name": "Zylker",
  82.     "url": "https://connect.zoho.com/portal/ourintranet"
  83.   }
  84. }

 

For more details or queries regarding outgoing webhooks, reach out to us at support@zohoconnect.com.

      Create. Review. Publish.

      Write, edit, collaborate on, and publish documents to different content management platforms.

      Get Started Now


        Access your files securely from anywhere

          Zoho CRM Training Programs

          Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

          Zoho CRM Training
            Redefine the way you work
            with Zoho Workplace

              Zoho DataPrep Personalized Demo

              If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

              Zoho CRM Training

                Create, share, and deliver

                beautiful slides from anywhere.

                Get Started Now


                  Zoho Sign now offers specialized one-on-one training for both administrators and developers.

                  BOOK A SESSION







                              Quick LinksWorkflow AutomationData Collection
                              Web FormsEnterpriseOnline Data Collection Tool
                              Embeddable FormsBankingBegin Data Collection
                              Interactive FormsWorkplaceData Collection App
                              CRM FormsCustomer ServiceAccessible Forms
                              Digital FormsMarketingForms for Small Business
                              HTML FormsEducationForms for Enterprise
                              Contact FormsE-commerceForms for any business
                              Lead Generation FormsHealthcareForms for Startups
                              Wordpress FormsCustomer onboardingForms for Small Business
                              No Code FormsConstructionRSVP tool for holidays
                              Free FormsTravelFeatures for Order Forms
                              Prefill FormsNon-Profit

                              Intake FormsLegal
                              Mobile App
                              Form DesignerHR
                              Mobile Forms
                              Card FormsFoodOffline Forms
                              Assign FormsPhotographyMobile Forms Features
                              Translate FormsReal EstateKiosk in Mobile Forms
                              Electronic Forms
                              Drag & drop form builder

                              Notification Emails for FormsAlternativesSecurity & Compliance
                              Holiday FormsGoogle Forms alternative GDPR
                              Form to PDFJotform alternativeHIPAA Forms
                              Email FormsFormstack alternativeEncrypted Forms

                              Wufoo alternativeSecure Forms

                              TypeformWCAG

                                All-in-one knowledge management and training platform for your employees and customers.


                                            Create. Review. Publish.

                                            Write, edit, collaborate on, and publish documents to different content management platforms.

                                            Get Started Now




                                                              You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                                                  Manage your brands on social media


                                                                    • Desk Community Learning Series


                                                                    • Digest


                                                                    • Functions


                                                                    • Meetups


                                                                    • Kbase


                                                                    • Resources


                                                                    • Glossary


                                                                    • Desk Marketplace


                                                                    • MVP Corner


                                                                    • Word of the Day


                                                                    • Ask the Experts


                                                                      Zoho Sheet Resources

                                                                       

                                                                          Zoho Forms Resources


                                                                            Secure your business
                                                                            communication with Zoho Mail


                                                                            Mail on the move with
                                                                            Zoho Mail mobile application

                                                                              Stay on top of your schedule
                                                                              at all times


                                                                              Carry your calendar with you
                                                                              Anytime, anywhere




                                                                                    Zoho Sign Resources

                                                                                      Sign, Paperless!

                                                                                      Sign and send business documents on the go!

                                                                                      Get Started Now




                                                                                              Zoho TeamInbox Resources





                                                                                                        Zoho DataPrep Demo

                                                                                                        Get a personalized demo or POC

                                                                                                        REGISTER NOW


                                                                                                          Design. Discuss. Deliver.

                                                                                                          Create visually engaging stories with Zoho Show.

                                                                                                          Get Started Now








                                                                                                                              • Related Articles

                                                                                                                              • Triggers supported - An overview

                                                                                                                                Overview Outgoing Webhooks in Zoho Connect support different triggers across modules (Feeds, Tasks, Manuals, and more). Triggers are the activities that stimulate an outgoing webhook to push data to an external URL or execute an custom function. ...
                                                                                                                              • Tasks and Boards

                                                                                                                                My Tasks The My Tasks page gives you a consolidated view of all the tasks assigned to you either privately or through a Board. Private tasks Tasks that you privately assign to others and those assigned to you will be listed here. Only you and those ...
                                                                                                                              • Working with boards in Zoho Connect

                                                                                                                                Overview Boards in Zoho Connect provide you with a powerful way to organize and manage tasks, projects, and workflows. Features like sections, drag-and-drop functionality and quick filters in boards help teams to track tasks and plan their work ...
                                                                                                                              • Arcades in Boards

                                                                                                                                Feature Availability Overview Arcade is available in the Tasks module in Zoho Connect, and is created with a sporty approach. This feature allows members to earn points for performing certain activities in the tasks module, such as creating a task, ...
                                                                                                                              • Triggers in Forums

                                                                                                                                Created a forum post Triggers the outgoing webhook whenever a forum post is created. Trigger type: Forum_Created { "payload": { "id": "12266000000493013", "url": ...
                                                                                                                                Wherever you are is as good as
                                                                                                                                your workplace

                                                                                                                                  Resources

                                                                                                                                  Videos

                                                                                                                                  Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                                                  eBooks

                                                                                                                                  Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                                                  Webinars

                                                                                                                                  Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                                                  CRM Tips

                                                                                                                                  Make the most of Zoho CRM with these useful tips.



                                                                                                                                    Zoho Show Resources