{"id":2541,"date":"2024-04-15T07:02:38","date_gmt":"2024-04-15T07:02:38","guid":{"rendered":"https:\/\/contentsnare.com\/help\/?post_type=ht_kb&#038;p=2541"},"modified":"2024-04-22T07:59:41","modified_gmt":"2024-04-22T07:59:41","slug":"webhook-payloads","status":"publish","type":"ht_kb","link":"https:\/\/help.contentsnare.com\/knowledge-base\/webhook-payloads\/","title":{"rendered":"Webhook Payload Examples"},"content":{"rendered":"\n<p>Here\u2019s a list of the events that trigger webhooks within Content Snare, and the payloads in those webhooks.<\/p>\n\n\n\n<p><strong>Product Webhooks<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Product Item Used<\/li>\n\n\n\n<li>Product Item Returned<\/li>\n\n\n\n<li>Product Item Exhausted<\/li>\n\n\n\n<li>Product Item Manual Purchase<\/li>\n\n\n\n<li>Product Item Auto Purchase<\/li>\n\n\n\n<li>Product Item Purchase Failed<\/li>\n<\/ul>\n\n\n\n<p><strong>Request Webhooks<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Request Created<\/li>\n\n\n\n<li>Request Updated<\/li>\n\n\n\n<li>Request Deleted<\/li>\n\n\n\n<li>Request Drafted<\/li>\n\n\n\n<li>Request Published<\/li>\n\n\n\n<li>Request Completed<\/li>\n\n\n\n<li>Request Archived<\/li>\n\n\n\n<li>Request Viewed<\/li>\n\n\n\n<li>Request Create Failed<\/li>\n\n\n\n<li>Request Update Failed<\/li>\n\n\n\n<li>Request Delete Failed<\/li>\n\n\n\n<li>Kanban Column Updated<\/li>\n<\/ul>\n\n\n\n<p><strong>Field Webhooks<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>All Fields Completed<\/li>\n\n\n\n<li>Field Completed<\/li>\n\n\n\n<li>Field Approved<\/li>\n\n\n\n<li>Field Rejected<\/li>\n\n\n\n<li>Comment Added<\/li>\n<\/ul>\n\n\n\n<p><strong>Client Webhooks<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Client Created<\/li>\n\n\n\n<li>Client Updated<\/li>\n\n\n\n<li>Client Deleted<\/li>\n\n\n\n<li>Client Create Failed<\/li>\n\n\n\n<li>Client Update Failed<\/li>\n\n\n\n<li>Client Delete Failed<\/li>\n<\/ul>\n\n\n\n<p><strong>Team Member Webhooks<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Team Member Created<\/li>\n\n\n\n<li>Team Member Updated<\/li>\n\n\n\n<li>Team Member Deleted<\/li>\n\n\n\n<li>Team Member Create Failed<\/li>\n\n\n\n<li>Team Member Update Failed<\/li>\n\n\n\n<li>Team Member Delete Failed<\/li>\n<\/ul>\n\n\n\n<p><strong>Communication Webhooks<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SMS Message Delivered <\/li>\n\n\n\n<li>SMS Message Failed <\/li>\n\n\n\n<li>Email Message Delivered <\/li>\n\n\n\n<li>Email Message Bounced <\/li>\n\n\n\n<li>Email Message Spammed<\/li>\n<\/ul>\n\n\n\n<p>For each webhook, there is a specific&nbsp;<strong>JSON<\/strong>&nbsp;(<strong>J<\/strong>ava<strong>S<\/strong>cript&nbsp;<strong>O<\/strong>bject&nbsp;<strong>N<\/strong>otation) payload. These are as follows:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Product Item Used<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"product_item_used\",\n  \"id\": \"vss_M1yg0LAfjBg9rD\",\n  \"quantity\": 1,\n  \"client_full_name\": \"1Test\",\n  \"client_email\": \"test@email.com\",\n  \"request_name\": \"Website Page Information\",\n  \"product\": \"identityverification\",\n  \"request_id\": \"req_7v80jRXC4M0mAo\",\n  \"page_id\": \"pag_k5vqbXLtO5r9YP\",\n  \"section_id\": \"sec_36DNbxLI29QbxV\",\n  \"field_id\": \"fld_B783LN8u6LaeEq\",\n  \"account_id\": \"acc_vK7Zym9U35Z69l\"\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Product Item Returned <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"product_item_returned\",\n  \"id\": \"vss_M1yg0LAfjBg9rD\",\n  \"quantity\": 1,\n  \"client_full_name\": \"1Test\",\n  \"client_email\": \"test@email.com\",\n  \"request_name\": \"Website Page Information\",\n  \"product\": \"identityverification\",\n  \"request_id\": \"req_7v80jRXC4M0mAo\",\n  \"page_id\": \"pag_k5vqbXLtO5r9YP\",\n  \"section_id\": \"sec_36DNbxLI29QbxV\",\n  \"field_id\": \"fld_B783LN8u6LaeEq\",\n  \"account_id\": \"acc_vK7Zym9U35Z69l\",\n  \"text\": \"Credit returned due to client declining license rights\"\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Product Item Exhausted <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"product_item_exhausted\",\n  \"quantity\": 0,\n  \"client_full_name\": \"1Test\",\n  \"client_email\": \"test@email.com\",\n  \"request_name\": \"Website Page Information\",\n  \"id\": \"vss_O6oWgeQaIOgXE0\",\n  \"product\": \"identityverification\",\n  \"request_id\": \"req_7v80jRXC4M0mAo\",\n  \"page_id\": \"pag_XQL19kKu5xo2YP\",\n  \"section_id\": \"sec_yO4No1PU36Qd6Z\",\n  \"field_id\": \"fld_1lqbwY6TXM6PmA\",\n  \"account_id\": \"acc_vK7Zym9U35Z69l\"\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Product Item Manual Purchase <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"product_item_manual_purchase\",\n  \"id\": \"pmn_5MlDbWpmhD3rg4\",\n  \"status\": \"paid\",\n  \"account_id\": \"acc_e7EVAXvJfxZ9zb\",\n  \"payment_initiator\": \"customer\",\n  \"quantity\": 10,\n  \"invoice\": \"CS-5734\",\n  \"product\": \"identityverification\"\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Product Item Auto Purchase <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"product_item_auto_purchase\",\n  \"id\": \"pmn_5MlDbWpmhD3rg4\",\n  \"status\": \"paid\",\n  \"payment_initiator\": \"merchant\",\n  \"quantity\": 10,\n  \"invoice\": \"CS-5735\",\n  \"product\": \"identityverification\"\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Product Item Purchase Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"product_item_purchase_failed\",\n  \"id\": \"pmn_5MlDbWpmhD3rg4\",\n  \"status\": \"not_paid\",\n  \"account_id\": \"acc_e7EVAXvJfxZ9zb\",\n  \"payment_initiator\": \"customer\",\n  \"quantity\": 10,\n  \"product\": \"identityverification\",\n  \"error_messages\": &#91;\n    \"Failed to activate auto collection on the billing side\"\n  ]\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-created\">Request Created<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"id\": \"0\",\n  \"event_name\": \"request_created\",\n  \"name\": \"Example Request\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"status\": \"draft\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": \"0\",\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client\": {\n    \"id\": \"0\",\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  }\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-updated\">Request Updated<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_updated\",\n  \"id\": 0,\n  \"name\": \"Example Request\",\n  \"status\": \"draft\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": true,\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": 0,\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"client\": {\n    \"id\": 0,\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  },\n  \"clients\": [\n    {\n      \"id\": 0,\n      \"company_name\": \"Example Company\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Example Client\",\n      \"phone\": \"123-456-7890\",\n      \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-deleted\">Request Deleted<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_destroyed\",\n  \"id\": 0\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Request Draft<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"request_draft\",\n  \"id\": \"req_pKDOaKtjPY3z5o\",\n  \"name\": \"Example Request\",\n  \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n  \"status\": \"draft\",\n  \"due\": \"2024-04-23\",\n  \"folder_name\": \"Default Folder\",\n  \"passcode_enabled\": false,\n  \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"communications_template_name\": \"None\",\n  \"completion_percentage\": 3,\n  \"comments_enabled\": true,\n  \"request_template_name\": \"Tax Return Documentation - Business (USA)\",\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"due_date\": \"2024-04-23\",\n  \"pin_code_enabled\": false,\n  \"client\": {\n    \"id\": \"acc_3Z02jLuqYAN0eX\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Paulyn\",\n    \"phone\": null,\n    \"avatar\": null,\n    \"company_name\": null,\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\"\n  },\n  \"clients\": &#91;\n    {\n      \"id\": \"acc_3Z02jLuqYAN0eX\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Paulyn\",\n      \"phone\": null,\n      \"avatar\": null,\n      \"company_name\": null,\n      \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\"\n    }\n  ]\n}\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Request Published<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"id\": \"0\",\n  \"event_name\": \"request_published\",\n  \"name\": \"Example Request\",\n  \"status\": \"published\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\"\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": \"true\",\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": \"0\",\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client\": {\n    \"id\": \"0\",\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  }\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-completed\">Request Completed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"id\": \"0\",\n  \"event_name\": \"request_completed\",\n  \"name\": \"Example Request\",\n  \"status\": \"published\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\"\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": \"true\",\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": \"0\",\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client\": {\n    \"id\": \"0\",\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  },\n  pages: [{\n    name: \"Example Page 1\",\n    instruction_text: \"Example Page 1 Instructions\",\n    sections: [{\n      name: \"Example Section 1\",\n      instruction_text: \"Example Section 1 Instructions\",\n      fields: [{\n        name: \"Example Field 1\",\n        instruction_text: \"Example Field 1 Instructions\",\n        type: \"text\",\n        status: \"approved\",\n        values: [],\n        values_flat: \"\"\n      }],\n      fields_count: 1\n    }],\n    fields_count: 1\n  }]\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-archived\">Request Archived<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_archived\",\n  \"id\": 0,\n  \"name\": \"Example Request\",\n  \"status\": \"archived\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": true,\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": 0,\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"client\": {\n    \"id\": 0,\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  },\n  \"clients\": [\n    {\n      \"id\": 0,\n      \"company_name\": \"Example Company\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Example Client\",\n      \"phone\": \"123-456-7890\",\n      \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  ],\n  \"pages\": [\n    {\n      \"toc_order_label\": \"1.0\",\n      \"name\": \"Example Page 1\",\n      \"instruction_text\": \"Example Page 1 Instructions\",\n      \"sections\": [\n        {\n          \"toc_order_label\": \"1.1\",\n          \"name\": \"Example Section 1\",\n          \"instruction_text\": \"Example Section 1 Instructions\",\n          \"fields\": [\n            {\n              \"name\": \"Example Field 1\",\n              \"instruction_text\": \"Example Field 1 Instructions\",\n              \"type\": \"text\",\n              \"status\": \"approved\",\n              \"values\": [],\n              \"values_flat\": \"\"\n            }\n          ],\n          \"fields_count\": 1\n        }\n      ],\n      \"fields_count\": 1\n    }\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Request Viewed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"request_viewed\",\n  \"id\": \"evt_rkpgAXuZ8PQnL1\",\n  \"request_id\": \"req_v564J7H9xd1lpP\",\n  \"account_id\": \"acc_3Z02jLuqYAN0eX\",\n  \"event_type\": \"actions\",\n  \"parameters\": {\n    \"name\": \"New Request\"\n  },\n  \"client\": {\n    \"id\": \"acc_3Z02jLuqYAN0eX\",\n    \"full_name\": \"Example Client\",\n    \"email\": \"example@example.com\",\n    \"timezone\": \"Asia\/Manila\",\n    \"avatar\": null,\n    \"company_name\": \"\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"language_code\": \"en\",\n    \"client_company\": null\n  },\n  \"request\": {\n    \"id\": \"req_v564J7H9xd1lpP\",\n    \"name\": \"New Request\",\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"status\": \"published\",\n    \"due\": \"2024-05-03\",\n    \"folder_name\": \"Archived\",\n    \"passcode_enabled\": false,\n    \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"share_via_link_enabled\": true,\n    \"communications_template_name\": \"None\",\n    \"completion_percentage\": 0,\n    \"comments_enabled\": true,\n    \"request_template_name\": null,\n    \"owner_name\": \"Example Owner\",\n    \"author_name\": \"Example Author\",\n    \"client_status\": null,\n    \"due_date\": \"2024-05-03\",\n    \"pin_code_enabled\": false\n  }\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-create-failed\">Request Create Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_create_failed\",\n  \"id\": null,\n  \"name\": \"Example Request\",\n  \"status\": \"draft\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": true,\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": 0,\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"client\": {\n    \"id\": 0,\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  },\n  \"clients\": [\n    {\n      \"id\": 0,\n      \"company_name\": \"Example Company\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Example Client\",\n      \"phone\": \"123-456-7890\",\n      \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  ],\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-update-failed\">Request Update Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_update_failed\",\n  \"id\": 0,\n  \"name\": \"Example Request\",\n  \"status\": \"draft\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": true,\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": 0,\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"client\": {\n    \"id\": 0,\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  },\n  \"clients\": [\n    {\n      \"id\": 0,\n      \"company_name\": \"Example Company\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Example Client\",\n      \"phone\": \"123-456-7890\",\n      \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  ],\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request-delete-failed\">Request Delete Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_destroy_failed\",\n  \"id\": 0,\n  \"name\": \"Example Request\",\n  \"status\": \"draft\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": true,\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": 0,\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"client\": {\n    \"id\": 0,\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  },\n  \"clients\": [\n    {\n      \"id\": 0,\n      \"company_name\": \"Example Company\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Example Client\",\n      \"phone\": \"123-456-7890\",\n      \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  ],\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"kanban-column-updated\">Kanban Column Updated<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"request_board_column_changed\",\n  \"id\": 0,\n  \"name\": \"Example Request\",\n  \"status\": \"draft\",\n  \"due_date\": \"2020-10-20\",\n  \"folder_name\": \"Default Folder\",\n  \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"pin_code_enabled\": true,\n  \"pin_code\": \"1234\",\n  \"request_template_name\": \"Example Template\",\n  \"communications_template_name\": \"Default\",\n  \"completion_percentage\": 0,\n  \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n  \"share_via_link_enabled\": true,\n  \"owner_name\": \"Example Owner\",\n  \"author_name\": \"Example Author\",\n  \"client_status\": null,\n  \"client\": {\n    \"id\": 0,\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  },\n  \"clients\": [\n    {\n      \"id\": 0,\n      \"company_name\": \"Example Company\",\n      \"email\": \"example@example.com\",\n      \"full_name\": \"Example Client\",\n      \"phone\": \"123-456-7890\",\n      \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  ],\n  \"board_column_attrs\": {\n    \"id\": 0,\n    \"name\": \"Kanban Column Name\",\n    \"sorting_position\": 0\n  }\n}\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"field-webhooks\">Field Webhooks<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"all-fields-completed\">All Fields Completed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"all_fields_completed\",\n  \"request\": {\n    \"id\": \"0\",\n    \"name\": \"Example Request\",\n    \"status\": \"published\",\n    \"due_date\": \"2020-10-20\",\n    \"folder_name\": \"Default Folder\"\n    \"url\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n    \"pin_code_enabled\": \"true\",\n    \"pin_code\": \"1234\",\n    \"request_template_name\": \"Example Template\",\n    \"communications_template_name\": \"Default\",\n    \"completion_percentage\": \"0\",\n    \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n    \"owner_name\": \"Example Owner\",\n   \"author_name\": \"Example Author\",\n    \"client\": {\n    \"id\": \"0\",\n    \"company_name\": \"Example Company\",\n    \"email\": \"example@example.com\",\n    \"full_name\": \"Example Client\",\n    \"phone\": \"123-456-7890\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n    }\n  }\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"field-completed\">Field Completed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n   \"id\": \"0\",\n   \"event_name\": \"field_completed\",\n   \"section_id\": \"0\",\n   \"section_name\": \"Example section name\",\n   \"page_id\": \"0\",\n   \"page_name\": \"Example page name\",\n   \"name\": \"Example completed field name\",\n   \"instruction_text\": \"Example completed field instructions\",\n   \"status: \"done\",\n   \"type: \"text\",\n   \"values: [\"Example completed field answer\"],\n   \"values_flat: \"Example approved field answer\",\n   \"request: {\n     \"id: 0,\n     \"name: \"Example Request\",\n     \"status: \"published\",\n     \"due_date: \"2020-10-20\",\n     \"folder_name: \"Default Folder\",\n     \"url: \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n     \"pin_code_enabled\": \"true\",\n     \"pin_code\": \"1234\",\n     \"request_template_name\": \"Example Template\",\n     \"communications_template_name\": \"Default\",\n     \"completion_percentage\": \"0\",\n     \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n     \"owner_name\": \"Example Owner\",\n     \"author_name\": \"Example Author\",\n     \"client\": {\n       \"id: \"0\",\n       \"company_name: \"Example Company\",\n       \"email: \"example@example.com\",\n       \"full_name: 'Example Client\",\n       \"phone\": \"123-456-7890\",\n       \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n     }\n   }\n }<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"field-approved\">Field Approved<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n   \"id\": \"0\",\n   \"event_name\": \"field_approved\",\n   \"section_id\": \"0\",\n   \"section_name\": \"Example section name\",\n   \"page_id\": \"0\",\n   \"page_name: \"Example page name\",\n   \"name\": 'Example approved field name',\n   \"instruction_text\": \"Example approved field instructions\",\n   \"status\": \"approved\",\n   \"type\": \"text\",\n   \"values\": [\"Example approved field answer\"],\n   \"values_flat\": \"Example approved field answer\",\n   \"request\": {\n     \"id\": 0,\n     \"name\": \"Example Request\",\n     \"status\": \"published\",\n     \"due_date\": \"2020-10-20\",\n     \"folder_name\": \"Default Folder\",\n     \"url: \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n     \"pin_code_enabled\": \"true\",\n     \"pin_code\": \"1234\",\n     \"request_template_name\": \"Example Template\",\n     \"communications_template_name\": \"Default\",\n     \"completion_percentage\": \"0\",\n     \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n     \"owner_name\": \"Example Owner\",\n     \"author_name\": \"Example Author\",\n     \"client\": {\n       \"id\": \"0\",\n       \"company_name\": \"Example Company\",\n       \"email\": \"example@example.com\",\n       \"full_name\": \"Example Client\",\n       \"phone\": \"123-456-7890\",\n       \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n     }\n   }\n }<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"field-rejected\">Field Rejected<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n   \"id\": \"0\",\n   \"event_name\": \"field_rejected\",\n   \"section_id\": \"0\",\n   \"section_name\": \"Example section name\",\n   \"page_id\": \"0\",\n   \"page_name: \"Example page name\",\n   \"name\": 'Example approved field name',\n   \"instruction_text\": \"Example approved field instructions\",\n   \"status\": \"approved\",\n   \"type\": \"text\",\n   \"values\": [\"Example approved field answer\"],\n   \"values_flat\": \"Example approved field answer\",\n   \"request\": {\n     \"id\": 0,\n     \"name\": \"Example Request\",\n     \"status\": \"published\",\n     \"due_date\": \"2020-10-20\",\n     \"folder_name\": \"Default Folder\",\n     \"url: \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n     \"pin_code_enabled\": \"true\",\n     \"pin_code\": \"1234\",\n     \"request_template_name\": \"Example Template\",\n     \"communications_template_name\": \"Default\",\n     \"completion_percentage\": \"0\",\n     \"share_link\": \"https:\/\/app.wordpress-69810-4035810.cloudwaysapps.com\/requests\/EXAMPLE_ONLY\",\n     \"owner_name\": \"Example Owner\",\n     \"author_name\": \"Example Author\",\n     \"client\": {\n       \"id\": \"0\",\n       \"company_name\": \"Example Company\",\n       \"email\": \"example@example.com\",\n       \"full_name\": \"Example Client\",\n       \"phone\": \"123-456-7890\",\n       \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n     }\n   }\n }<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Comment Create Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"comment_created\",\n  \"id\": null,\n  \"answer_id\": \"ans_RQ1zp49c7Xz4km\",\n  \"field_id\": \"fld_1lqbwY6TaMPmAo\",\n  \"section_id\": \"sec_YlVGMK1svdga0D\",\n  \"tab_id\": \"pag_jAxqEgBi4prM6g\",\n  \"request_id\": \"req_1k7zv4aUlpN8PB\",\n  \"text\": \"&lt;div>Comment Sample&lt;\/div>\",\n  \"type\": \"user\",\n  \"unread\": false,\n  \"reference_meta\": {},\n  \"account\": {\n    \"id\": \"acc_e7EVAXvJfxZ9zb\",\n    \"full_name\": \"Example Client\",\n    \"email\": \"sample_client@example.com\",\n    \"timezone\": \"Australia\/Brisbane\",\n    \"primary\": true,\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n    \"company_name\": \"New company\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"language_code\": \"en\",\n    \"client_company\": {\n      \"id\": \"cmp_z105QJxhy7YdlX\",\n      \"name\": \"New company\",\n      \"avatar_url\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n    }\n  },\n  \"errors\": &#91;\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"comment-added\">Comment Added<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"comment_created\",\n  \"id\": 0,\n  \"answer_id\": 0,\n  \"field_id\": 0,\n  \"section_id\": 0,\n  \"tab_id\": 0,\n  \"request_id\": 0,\n  \"text\": \"&lt;div&gt;Comment Sample&lt;\/div&gt;\",\n  \"type\": \"user\",\n  \"unread\": false,\n  \"reference_meta\": {},\n  \"account\": {\n    \"id\": 0,\n    \"full_name\": \"Example Client\",\n    \"email\": \"sample_client@example.com\",\n    \"timezone\": \"Australia\/Brisbane\",\n    \"primary\": true,\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n    \"company_name\": \"New company\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"language_code\": \"en\",\n    \"client_company\": {\n      \"id\": 0,\n      \"name\": \"New company\",\n      \"avatar_url\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n      \"external_source\": null\n    }\n  }\n}\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"client-webhooks\">Client Webhooks<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"client-created\">Client Created<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"id\": \"0\",\n  \"event_name\": \"client_created\",\n  \"company_name\": \"Example Company\",\n  \"email\": \"example@example.com\",\n  \"full_name\": \"Example Client\",\n  \"phone\": \"123-456-7890\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"client-updated\">Client Updated<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"id\": \"0\",\n  \"event_name\": \"client_updated\",\n  \"company_name\": \"Example Company\",\n  \"email\": \"example@example.com\",\n  \"full_name\": \"Example Client\",\n  \"phone\": \"123-456-7890\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"client-deleted\">Client Deleted<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"client_destroyed\",\n  \"id\": 0\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"client-create-failed\">Client Create Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"client_create_failed\",\n  \"id\": null,\n  \"date_format\": \"MM\/dd\/yyyy\",\n  \"email\": \"sample_client@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": \"987-654-3210\",\n  \"timezone\": \"Australia\/Brisbane\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  \"archived\": false,\n  \"is_assigned\": false,\n  \"client_companies\": [\n    {\n      \"id\": 0,\n      \"name\": \"Example Client\",\n      \"avatar_url\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n      \"external_source\": null\n    }\n  ],\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"client-update-failed\">Client Update Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"client_update_failed\",\n  \"id\": 0,\n  \"date_format\": \"MM\/dd\/yyyy\",\n  \"email\": \"sample_client@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": \"987-654-3210\",\n  \"timezone\": \"Australia\/Brisbane\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  \"archived\": false,\n  \"is_assigned\": false,\n  \"client_companies\": [\n    {\n      \"id\": 0,\n      \"name\": \"Example Client\",\n      \"avatar_url\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n      \"external_source\": null\n    }\n  ],\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"client-delete-failed\">Client Delete Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"client_destroy_failed\",\n  \"id\": 0,\n  \"date_format\": \"MM\/dd\/yyyy\",\n  \"email\": \"sample_client@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": \"987-654-3210\",\n  \"timezone\": \"Australia\/Brisbane\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  \"archived\": false,\n  \"is_assigned\": false,\n  \"client_companies\": [\n    {\n      \"id\": 0,\n      \"name\": \"Example Client\",\n      \"avatar_url\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n      \"external_source\": null\n    }\n  ],\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"team-member-webhooks\">Team Member Webhooks<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"team-member-created\">Team Member Created<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"team_member_created\",\n  \"id\": 218365,\n  \"date_format\": \"dd\/MM\/yyyy\",\n  \"email\": \"examplecompany@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": null,\n  \"timezone\": \"Europe\/Budapest\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/796a5b4cada85b3a3716467b77dc717b?s=100&amp;d=mp\"\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"team-member-updated\">Team Member Updated<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"team_member_updated\",\n  \"id\": 218365,\n  \"date_format\": \"dd\/MM\/yyyy\",\n  \"email\": \"examplecompany@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": null,\n  \"timezone\": \"Europe\/Budapest\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/796a5b4cada85b3a3716467b77dc717b?s=100&amp;d=mp\"\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"team-member-deleted\">Team Member Deleted<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"team_member_destroyed\",\n  \"id\": 0\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"team-member-create-failed\">Team Member Create Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"team_member_create_failed\",\n  \"id\": null,\n  \"date_format\": \"MM\/dd\/yyyy\",\n  \"email\": \"sample_client@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": \"987-654-3210\",\n  \"timezone\": \"Australia\/Brisbane\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  \"errors\": [\n\n\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"team-member-update-failed\">Team Member Update Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"team_member_update_failed\",\n  \"id\": 0,\n  \"date_format\": \"MM\/dd\/yyyy\",\n  \"email\": \"sample_client@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": \"987-654-3210\",\n  \"timezone\": \"Australia\/Brisbane\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"team-member-delete-failed\">Team Member Delete Failed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"event_name\": \"team_member_destroy_failed\",\n  \"id\": 0,\n  \"date_format\": \"MM\/dd\/yyyy\",\n  \"email\": \"sample_client@example.com\",\n  \"full_name\": \"Sample Client\",\n  \"language_code\": \"en\",\n  \"phone\": \"987-654-3210\",\n  \"timezone\": \"Australia\/Brisbane\",\n  \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\",\n  \"errors\": [\n    \"First error message example\",\n    \"Second error message example\"\n  ]\n}\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">SMS Message Delivered <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"sms_delivered\",\n  \"id\": \"evt_J5z6w2Vc20p8MA\",\n  \"request_id\": \"req_AkZDXXKHY6DYrX\",\n  \"account_id\": \"acc_ayGZxmdUy2RDpP\",\n  \"event_type\": \"actions\",\n  \"parameters\": {\n    \"from\": \"+10000000000\",\n    \"phone\": \"+10000000000\",\n    \"status\": \"sms_delivered\",\n    \"subject\": \"Test Message\",\n    \"template_name\": \"SMS Test Template\"\n  },\n  \"request\": {\n    \"id\": \"req_1k7zv4aUlpN8PB\",\n    \"name\": \"Example Request\",\n    \"status\": \"draft\",\n    \"due\": \"2020-10-20\",\n    \"folder_name\": \"Default Folder\",\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"passcode_enabled\": true,\n    \"request_template_name\": \"Example Template\",\n    \"communications_template_name\": \"Default\",\n    \"completion_percentage\": 0,\n    \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"share_via_link_enabled\": true,\n    \"owner_name\": \"Example Owner\",\n    \"author_name\": \"Example Author\"\n  },\n  \"client\": {\n    \"id\": \"acc_e7EVAXvJfxZ9zb\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"email\": \"sample_client@example.com\",\n    \"full_name\": \"Sample Client\",\n    \"language_code\": \"en\",\n    \"phone\": \"987-654-3210\",\n    \"timezone\": \"Australia\/Brisbane\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  }\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">SMS Message Failed <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"sms_failed\",\n  \"id\": \"evt_kGJLLVU39RNJ58\",\n  \"request_id\": \"req_EazYy1Uj4n9zqG\",\n  \"account_id\": \"acc_3Z02jLuqYAN0eX\",\n  \"event_type\": \"critical\",\n  \"parameters\": {\n    \"from\": \"+14159039621\",\n    \"email\": \"+61123456789\",\n    \"status\": \"sms_failed\",\n    \"subject\": \"Test\",\n    \"error_messages\": &#91;\n      \"Permission to send an SMS has not been enabled for the region indicated by the 'To' number: +6112345XXXX\"\n    ]\n  },\n  \"client\": {\n    \"id\": \"acc_3Z02jLuqYAN0eX\",\n    \"full_name\": \"Example Client\",\n    \"email\": \"example@example.com\",\n    \"timezone\": \"Asia\/Manila\",\n    \"avatar\": null,\n    \"company_name\": \"\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"language_code\": \"en\",\n    \"client_company\": null\n  },\n  \"request\": {\n    \"id\": \"req_EazYy1Uj4n9zqG\",\n    \"name\": \"Example Request\",\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"status\": \"published\",\n    \"due\": \"2024-04-29\",\n    \"folder_name\": \"Default Folder\",\n    \"passcode_enabled\": false,\n    \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"share_via_link_enabled\": true,\n    \"communications_template_name\": \"Default\",\n    \"completion_percentage\": 0,\n    \"comments_enabled\": true,\n    \"request_template_name\": \"Example Template\",\n    \"owner_name\": \"Example Owner\",\n    \"author_name\": \"Example Author\",\n    \"client_status\": null,\n    \"due_date\": \"2024-04-29\",\n    \"pin_code_enabled\": false\n  }\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Email Message Delivered <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"email_delivered\",\n  \"id\": \"evt_oenkkeur60WnWV\",\n  \"request_id\": \"req_EwzeeKIpx22zjP\",\n  \"account_id\": \"acc_3Z02jLuqYAN0eX\",\n  \"event_type\": \"actions\",\n  \"parameters\": {\n    \"from\": \"example &lt;donotreply@contentsnare-mail.com>\",\n    \"email\": \"example@example.com\",\n    \"status\": \"email_delivered\",\n    \"subject\": \"Information required for New Request\"\n  },\n  \"client\": {\n    \"id\": \"acc_3Z02jLuqYAN0eX\",\n    \"full_name\": \"Example Client\",\n    \"email\": \"example@example.com\",\n    \"timezone\": \"Asia\/Manila\",\n    \"avatar\": null,\n    \"company_name\": \"\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"language_code\": \"en\",\n    \"client_company\": null\n  },\n  \"request\": {\n    \"id\": \"req_EwzeeKIpx22zjP\",\n    \"name\": \"New Request\",\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY4\",\n    \"status\": \"published\",\n    \"due\": \"2024-04-23\",\n    \"folder_name\": \"Archived\",\n    \"passcode_enabled\": false,\n    \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"share_via_link_enabled\": true,\n    \"communications_template_name\": \"None\",\n    \"completion_percentage\": 0,\n    \"comments_enabled\": true,\n    \"request_template_name\": null,\n    \"owner_name\": \"Example Owner\",\n    \"author_name\": \"Example Author\",\n    \"client_status\": null,\n    \"due_date\": \"2024-04-23\",\n    \"pin_code_enabled\": false\n  }\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Email Message Bounced <\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"email_bounced\",\n  \"id\": \"evt_WbnGRgC0WbKJEV\",\n  \"request_id\": \"req_EwzeeKIpx22zjP\",\n  \"account_id\": \"acc_rLgpzeHGEOmabK\",\n  \"event_type\": \"critical\",\n  \"parameters\": {\n    \"from\": \"example &lt;donotreply@contentsnare-mail.com>\",\n    \"name\": \"Hard bounce\",\n    \"email\": \"example@example.com\",\n    \"status\": \"email_bounced\",\n    \"subject\": \"test\",\n    \"error_messages\": &#91;\n      \"The server was unable to deliver your message (ex: unknown user, mailbox not found).\"\n    ]\n  },\n  \"client\": {\n    \"id\": \"acc_rLgpzeHGEOmabK\",\n    \"full_name\": \"Test Client\",\n    \"email\": \"example@example.com\",\n    \"timezone\": \"Asia\/Manila\",\n    \"avatar\": null,\n    \"company_name\": \"\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"language_code\": \"en\",\n    \"client_company\": null\n  },\n  \"request\": {\n    \"id\": \"req_EwzeeKIpx22zjP\",\n    \"name\": \"New Request\",\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"status\": \"published\",\n    \"due\": \"2024-04-23\",\n    \"folder_name\": \"Archived\",\n    \"passcode_enabled\": false,\n    \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"share_via_link_enabled\": true,\n    \"communications_template_name\": \"None\",\n    \"completion_percentage\": 0,\n    \"comments_enabled\": true,\n    \"request_template_name\": null,\n    \"owner_name\": \"Example Owner\",\n    \"author_name\": \"Example Author\",\n    \"client_status\": null,\n    \"due_date\": \"2024-04-23\",\n    \"pin_code_enabled\": false\n  }\n}\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Email Message Spammed<\/h3>\n\n\n\n<p>Example JSON payload:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"event_name\": \"email_spam_complained\",\n  \"id\": \"evt_kdW6DV1cYMGOmp\",\n  \"request_id\": \"req_AkZDXXKHY6DYrX\",\n  \"account_id\": \"acc_ayGZxmdUy2RDpP\",\n  \"event_type\": \"warning\",\n  \"parameters\": {\n    \"from\": \"sample_account@example.com\",\n    \"email\": \"sample_client@example.com\",\n    \"status\": \"email_spam_complained\",\n    \"subject\": \"Test Subject\",\n    \"error_messages\": &#91;\n      \"The subscriber explicitly marked this message as spam.\"\n    ]\n  },\n  \"request\": {\n    \"id\": \"req_1k7zv4aUlpN8PB\",\n    \"name\": \"Example Request\",\n    \"status\": \"draft\",\n    \"due\": \"2020-10-20\",\n    \"folder_name\": \"Default Folder\",\n    \"url\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"passcode_enabled\": true,\n    \"request_template_name\": \"Example Template\",\n    \"communications_template_name\": \"Default\",\n    \"completion_percentage\": 0,\n    \"share_link\": \"https:\/\/app.contentsnare.com\/requests\/EXAMPLE_ONLY\",\n    \"share_via_link_enabled\": true,\n    \"owner_name\": \"Example Owner\",\n    \"author_name\": \"Example Author\"\n  },\n  \"client\": {\n    \"id\": \"acc_e7EVAXvJfxZ9zb\",\n    \"date_format\": \"MM\/dd\/yyyy\",\n    \"email\": \"sample_client@example.com\",\n    \"full_name\": \"Sample Client\",\n    \"language_code\": \"en\",\n    \"phone\": \"987-654-3210\",\n    \"timezone\": \"Australia\/Brisbane\",\n    \"avatar\": \"https:\/\/www.gravatar.com\/avatar\/93942e96f5acd83e2e047ad8fe03114d?s=100&amp;d=robohash\"\n  }\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"field-types\">Field Types<\/h2>\n\n\n\n<p>In the above webhooks where a field is involved, there is a \u201ctype\u201d parameter included. These are the possible values for field \u201ctype\u201d:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>text \u2013 text field that accepts a single line of unformatted text.<\/li>\n\n\n\n<li>textarea \u2013 text field that accepts multiple lines of unformatted text.<\/li>\n\n\n\n<li>wysiwyg \u2013 text field that accepts multiple lines of formatted text.<\/li>\n\n\n\n<li>email \u2013 text field that accepts a properly formatted email address.<\/li>\n\n\n\n<li>url \u2013 text field that accepts a properly formatted url.<\/li>\n\n\n\n<li>number \u2013 number field that accepts any positive or negative real or integer number.<\/li>\n\n\n\n<li>phone \u2013 number field that accepts a properly formatted phone number.<\/li>\n\n\n\n<li>date\/time \u2013 number field that accepts a properly formatted date.<\/li>\n\n\n\n<li>image \u2013 file field that accepts an image file.<\/li>\n\n\n\n<li>file \u2013 file field that accepts any file type.<\/li>\n\n\n\n<li>checkbox \u2013 option field that shows each option as a checkbox and allows selection of multiple options.<\/li>\n\n\n\n<li>radio \u2013 option field that shows each option as a radio button and allows selection of a single option.<\/li>\n\n\n\n<li>select \u2013 option field that shows each option as a dropdown and allows selection of a single option.<\/li>\n\n\n\n<li>image select \u2013 option field that shows a list of images and allows selection of one image.<\/li>\n\n\n\n<li>color picker \u2013 custom field that allows a color to be selected.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Here\u2019s a list of the events that trigger webhooks within Content Snare, and the payloads in those webhooks. Product Webhooks Request Webhooks Field Webhooks Client Webhooks Team Member Webhooks Communication Webhooks For each webhook, there is a specific&nbsp;JSON&nbsp;(JavaScript&nbsp;Object&nbsp;Notation) payload. These are as follows: Product Item Used Example JSON payload: Product&#8230;<\/p>\n","protected":false},"author":1,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"footnotes":""},"ht-kb-category":[1040],"ht-kb-tag":[],"class_list":["post-2541","ht_kb","type-ht_kb","status-publish","format-standard","hentry","ht_kb_category-integrations"],"_links":{"self":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb\/2541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/comments?post=2541"}],"version-history":[{"count":5,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb\/2541\/revisions"}],"predecessor-version":[{"id":2624,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb\/2541\/revisions\/2624"}],"wp:attachment":[{"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/media?parent=2541"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb-category?post=2541"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/help.contentsnare.com\/wp-json\/wp\/v2\/ht-kb-tag?post=2541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}