{"id":80706,"date":"2020-04-02T17:35:00","date_gmt":"2020-04-02T08:35:00","guid":{"rendered":"https:\/\/support.questetra.com\/developer-blog\/message-start-event-receive-task-form-validation\/"},"modified":"2026-06-18T17:17:28","modified_gmt":"2026-06-18T08:17:28","slug":"message-start-event-receive-task-form-validation","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-validation\/","title":{"rendered":"Let\u2019s Create Public Web Forms (Input check)"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"58\" data-attachment-id=\"113160\" data-permalink=\"https:\/\/support.questetra.com\/en\/developer-blog\/how-to-use-timer-start-event\/attachment\/advanced-banner-new-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en.png?fit=1200%2C68&amp;ssl=1\" data-orig-size=\"1200,68\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"advanced-banner-new-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en.png?fit=1024%2C58&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en-1024x58.png?resize=1024%2C58&#038;ssl=1\" alt=\"\" class=\"wp-image-113160\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en.png?resize=1024%2C58&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en.png?resize=600%2C34&amp;ssl=1 600w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en.png?resize=768%2C44&amp;ssl=1 768w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/05\/advanced-banner-new-en.png?w=1200&amp;ssl=1 1200w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<div style=\"height:0px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p><a href=\"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-basic\/\"><i class=\"fas fa-arrow-left\"><\/i> Previous: Basic<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the previous post, we created an App for confirming whether email addresses entered into a web form exist. It was designed so that the URL of the following [Receive Task (Form)] would be sent to the email address that had been submitted and completes if the Task is Operated. Even though this will work fine, let&#8217;s refine the settings a little more.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set an expiration time for processing the [Receive Task (Form)]<\/li>\n\n\n\n<li>Set a validation check on the input email address in the [Message Start Event (Form)]<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Set an expiration time for processing the [Receive Task (Form)]<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Using the current settings, the Case will never finish until the [Receive Task (Form)] is processed. In situations where we want to confirm the presence of an email address, it should not be necessary to wait for too long. In addition, even though the URL of the [Receive Task (Form)] is randomly generated, the risk of the URL becoming known to others increases as time goes by.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can set an expiration time for handling the Task in the properties of a [Receive Task (Form)]. Let&#8217;s configure it to, for example, 7 days after the Case started.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">First, create a Data Item for storing the expiry date and time.<\/p>\n\n\n\n<table style=\"width: 75% !important;margin-left: auto;margin-right:auto\">\n  <tbody><tr>\n    <th>Data Item Name<\/th>\n    <th>Data-type<\/th>\n    <th>Remark<\/th>\n  <\/tr>\n  <tr>\n    <td>Expiration<\/td>\n    <td>Datetime<\/td>\n    <td>Initial: <br> processInstanceStartDatetime.addDays(7)<\/td>\n  <\/tr>\n<\/tbody><\/table>\n\n\n\n<table style=\"width: 75% !important;margin-left: auto;margin-right:auto\">\n  <tbody><tr>\n    <th><\/th>\n    <th>Start<\/th>\n    <th>Receive<\/th>\n    <th>Confirm<\/th>\n  <\/tr>\n  <tr>\n    <td>Expiration<\/td>\n    <td><span style=\"color: Red;\"><i class=\"fas fa-eye-slash fa-lg fa-flip-horizontal\" data-fa-transform=\"shrink-7\" data-fa-mask=\"fas fa-circle\"><\/i><\/span> (No display)<\/td>\n    <td><span style=\"color: Red;\"><i class=\"fas fa-eye-slash fa-lg fa-flip-horizontal\" data-fa-transform=\"shrink-7\" data-fa-mask=\"fas fa-circle\"><\/i><\/span> (No display)<\/td>\n    <td><span style=\"color: Red;\"><i class=\"fas fa-eye-slash fa-lg fa-flip-horizontal\" data-fa-transform=\"shrink-7\" data-fa-mask=\"fas fa-circle\"><\/i><\/span> (No display)<\/td>\n  <\/tr>\n<\/tbody><\/table>\n\n\n\n<p class=\"wp-block-paragraph\">By specifying <em>processInstanceStartDatetime.addDays(7)<\/em> as the initial value of the Data Item &#8220;Expiration&#8221;, the value in the Item will be the date and the time of 7 days after the Case started.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Then, by inputting the &#8220;Expiration&#8221; Data Item to the Deadline field in the General tab, the deadline for inputting to the public web form is set.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"960\" height=\"540\" data-attachment-id=\"87524\" data-permalink=\"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-validation\/attachment\/message-form-deadline-data-html-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-data-html-en.png?fit=960%2C540&amp;ssl=1\" data-orig-size=\"960,540\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"message-form-deadline-data-html-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-data-html-en.png?fit=960%2C540&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-data-html-en.png?resize=960%2C540&#038;ssl=1\" alt=\"\" class=\"wp-image-87524\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-data-html-en.png?w=960&amp;ssl=1 960w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-data-html-en.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-data-html-en.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 960px) 100vw, 960px\" \/><figcaption class=\"wp-element-caption\"><br>Embedded Command as with [Throwing Message Intermediate Event (Email)[<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Once you set up the deadline in the [Receive Task (Form)] a deadline icon will be displayed on the Service Task icon. Add an End Event and connect to it from the deadline icon so that the Case ends when the expiration time is reached.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"960\" height=\"540\" data-attachment-id=\"87527\" data-permalink=\"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-validation\/attachment\/message-form-deadline-workflow-html-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-workflow-html-en.png?fit=960%2C540&amp;ssl=1\" data-orig-size=\"960,540\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"message-form-deadline-workflow-html-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-workflow-html-en.png?fit=960%2C540&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-workflow-html-en.png?resize=960%2C540&#038;ssl=1\" alt=\"\" class=\"wp-image-87527\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-workflow-html-en.png?w=960&amp;ssl=1 960w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-workflow-html-en.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-deadline-workflow-html-en.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 960px) 100vw, 960px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In addition, append the following sentence to the body of the email which is sent at the [Throwing Message Intermediate Event (Email)] to notify that the public web form will expire.<\/p>\n\n\n<div class=\"su-note\"  style=\"border-color:#dbdbdb;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;\"><div class=\"su-note-inner su-u-clearfix su-u-trim\" style=\"background-color:#f5f5f5;border-color:#ffffff;color:#333333;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;\">\nThis URL will become invalid after <strong>#{#q_deadline}<\/strong><br \/>\n<\/div><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Set a validation check on the input email address in the [Message Start Event (Form)]<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Since there are some rules on strings in email addresses, it would be better for obviously improper character strings to be removed when an email is entered to the form. By setting up a <strong>Regular expression to be satisfied<\/strong> in the Email address Data Item, you can restrict the input to a specific format. The following regular expression is recommended to represent the expected format for email addresses.<\/p>\n\n\n<div class=\"su-note\"  style=\"border-color:#dbdbdb;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;\"><div class=\"su-note-inner su-u-clearfix su-u-trim\" style=\"background-color:#f5f5f5;border-color:#ffffff;color:#333333;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;\">\n[-!#-&#8216;*+\/-9=?A-Z^-~]+(?:\\.[-!#-&#8216;*+\/-9=?A-Z^-~]+)*@[-!#-&#8216;*+\/-9=?A-Z^-~]+(?:\\.[-!#-&#8216;*+\/-9=?A-Z^-~]+)*<br \/>\n<\/div><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">This is a regular expression that is actually being used inside Questetra BPM Suite. That means it is the format for email addresses allowed in Questetra BPM Suite. Incidentally, this regular expression represents a format in which the following are excluded from Address Specification in <a href=\"https:\/\/tools.ietf.org\/html\/rfc5322\">RFC 5322<\/a>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Comments<\/li>\n\n\n\n<li>White Space<\/li>\n\n\n\n<li>Control Characters<\/li>\n\n\n\n<li>IP Addresses<\/li>\n\n\n\n<li>Formats that have been made obsolete in RFC 2822<\/li>\n\n\n\n<li>Format including <em>quote-string<\/em><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">In addition, set up the Placeholder text and the Description to tell the public form users that the input is being validated. Placeholders are for indicating an input example, so set up a suitable email address such as &#8220;support@questetra.com&#8221;. Since it will disappear when you start typing, it is appropriate to show merely an example, not to write important details. In the Description, briefly explain the restrictions on inputting character strings, e.g. &#8220;Only input alphanumeric and symbols in a single byte.&#8221;<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"960\" height=\"540\" data-attachment-id=\"87541\" data-permalink=\"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-validation\/attachment\/message-form-validation-regex-html-en-1\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-validation-regex-html-en-1.png?fit=960%2C540&amp;ssl=1\" data-orig-size=\"960,540\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"message-form-validation-regex-html-en-1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-validation-regex-html-en-1.png?fit=960%2C540&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-validation-regex-html-en-1.png?resize=960%2C540&#038;ssl=1\" alt=\"\" class=\"wp-image-87541\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-validation-regex-html-en-1.png?w=960&amp;ssl=1 960w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-validation-regex-html-en-1.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-validation-regex-html-en-1.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 960px) 100vw, 960px\" \/><figcaption class=\"wp-element-caption\"><br>Settings of Placeholder texts and Description in the Data Item &#8220;Email address&#8221;<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"751\" height=\"262\" data-attachment-id=\"87538\" data-permalink=\"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-validation\/attachment\/message-form-regex-preview-html-en-1\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-regex-preview-html-en-1.png?fit=751%2C262&amp;ssl=1\" data-orig-size=\"751,262\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"message-form-regex-preview-html-en-1\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-regex-preview-html-en-1.png?fit=751%2C262&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-regex-preview-html-en-1.png?resize=751%2C262&#038;ssl=1\" alt=\"\" class=\"wp-image-87538\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-regex-preview-html-en-1.png?w=751&amp;ssl=1 751w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/04\/message-form-regex-preview-html-en-1.png?resize=600%2C209&amp;ssl=1 600w\" sizes=\"auto, (max-width: 751px) 100vw, 751px\" \/><figcaption class=\"wp-element-caption\">Appearance of the public web form<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This completes the input deadline and email address validation. Please utilize web forms of Questetra BPM Suite in your business!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introducing how to set the deadline for processing \u201cReceive Task (Form)\u201d and a method of validation on email addresses using regular expressions.<\/p>\n","protected":false},"author":3,"featured_media":79086,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","_uag_custom_page_level_css":"","advanced_seo_description":"","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_seo_schema_type":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[296],"tags":[],"faq_section":[],"class_list":["post-80706","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-developer-blog"],"jetpack_publicize_connections":[],"uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-portrait-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=900%2C675&ssl=1",900,675,true],"newspack-article-block-square-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=800%2C600&ssl=1",800,600,true],"newspack-article-block-portrait-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=600%2C675&ssl=1",600,675,true],"newspack-article-block-square-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=800%2C675&ssl=1",800,675,true],"newspack-article-block-landscape-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=600%2C450&ssl=1",600,450,true],"newspack-article-block-portrait-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=450%2C600&ssl=1",450,600,true],"newspack-article-block-square-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=600%2C600&ssl=1",600,600,true],"newspack-article-block-landscape-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=400%2C300&ssl=1",400,300,true],"newspack-article-block-portrait-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=300%2C400&ssl=1",300,400,true],"newspack-article-block-square-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=400%2C400&ssl=1",400,400,true],"newspack-article-block-landscape-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=200%2C150&ssl=1",200,150,true],"newspack-article-block-portrait-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=150%2C200&ssl=1",150,200,true],"newspack-article-block-square-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1",1200,675,true]},"uagb_author_info":{"display_name":"Hirotaka NISHI","author_link":"https:\/\/support.questetra.com\/en\/author\/nishiquestetra\/"},"uagb_comment_info":4,"uagb_excerpt":"Introducing how to set the deadline for processing \u201cReceive Task (Form)\u201d and a method of validation on email addresses using regular expressions.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-kZI","jetpack-related-posts":[{"id":80114,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-receive-task-form-basic\/","url_meta":{"origin":80706,"position":0},"title":"Let&#8217;s Create Public Web Forms (Basic)","author":"Hirotaka NISHI","date":"2020-10-01","format":false,"excerpt":"Introducing \u201cMessage Start Event (Form)\u201d and \u201cReceive Task (Form)\u201d that can be set up as a Web form accessible from outside.","rel":"","context":"In &quot;Questetra Developers Blog&quot;","block_context":{"text":"Questetra Developers Blog","link":"https:\/\/support.questetra.com\/en\/category\/developer-blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":70192,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/receive-task-form-webhook-twilio\/","url_meta":{"origin":80706,"position":1},"title":"Phone Number Verification through Web Form Application","author":"HatanakaAkihiro","date":"2018-06-27","format":false,"excerpt":"We have created a Workflow App for the web application form in which verification is performed on the entered email address. This time, I will revise it so a phone number must be entered as well. Also, I will make it so that it verifies the entered phone number.","rel":"","context":"In &quot;Questetra Developers Blog&quot;","block_context":{"text":"Questetra Developers Blog","link":"https:\/\/support.questetra.com\/en\/category\/developer-blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/06\/phone-verification-1200x675-1.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/06\/phone-verification-1200x675-1.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/06\/phone-verification-1200x675-1.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/06\/phone-verification-1200x675-1.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/06\/phone-verification-1200x675-1.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":79328,"url":"https:\/\/support.questetra.com\/en\/bpmn-icons\/receive-task-form\/","url_meta":{"origin":80706,"position":2},"title":"Receive Task (form)","author":"Hirotaka NISHI","date":"2024-09-02","format":false,"excerpt":"Publishes a Web form when a token arrives and awaits input to the web form. Advances the token if there is an input to the web form. The Web form can be submitted by users who don't have an account for the Workflow platform. The user is notified of the\u2026","rel":"","context":"In &quot;BPMN Icons&quot;","block_context":{"text":"BPMN Icons","link":"https:\/\/support.questetra.com\/en\/category\/bpmn-icons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/10\/bpmn-icon-receive-task-form-1200%C3%97675.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/10\/bpmn-icon-receive-task-form-1200%C3%97675.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/10\/bpmn-icon-receive-task-form-1200%C3%97675.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/10\/bpmn-icon-receive-task-form-1200%C3%97675.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/10\/bpmn-icon-receive-task-form-1200%C3%97675.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":82471,"url":"https:\/\/support.questetra.com\/en\/system-settings\/ip-address-filtering\/","url_meta":{"origin":80706,"position":3},"title":"System Settings &#8211; IP Address Filtering","author":"Peter Glover","date":"2020-03-05","format":false,"excerpt":"Allows access to URLs from external clients to be restricted to specific IP addresses.","rel":"","context":"In &quot;System Settings&quot;","block_context":{"text":"System Settings","link":"https:\/\/support.questetra.com\/en\/category\/system-settings\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/03\/System-Settings-IP-Address-Filtering.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/03\/System-Settings-IP-Address-Filtering.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/03\/System-Settings-IP-Address-Filtering.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/03\/System-Settings-IP-Address-Filtering.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/03\/System-Settings-IP-Address-Filtering.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":71582,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/receive-task-form-deadline-1180\/","url_meta":{"origin":80706,"position":4},"title":"How to Utilize Receive Task (Form) &#8211; Set a Deadline for Application Form (Revised edition)","author":"HatanakaAkihiro","date":"2018-10-24","format":false,"excerpt":"Even though it is difficult to guess the URL of the Receive Task (Form), the risk of being attacked is also increased if it does not have an expiration. It is better to set the deadline even for the sake of subsequent work. Set the expiration to the Receive Task\u2026","rel":"","context":"In &quot;Questetra Developers Blog&quot;","block_context":{"text":"Questetra Developers Blog","link":"https:\/\/support.questetra.com\/en\/category\/developer-blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/10\/receive-task-form-deadline-1200x675-1.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/10\/receive-task-form-deadline-1200x675-1.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/10\/receive-task-form-deadline-1200x675-1.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/10\/receive-task-form-deadline-1200x675-1.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2018\/10\/receive-task-form-deadline-1200x675-1.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":79635,"url":"https:\/\/support.questetra.com\/en\/templates\/inquiry-response-flow-20130924\/","url_meta":{"origin":80706,"position":5},"title":"Inquiry Response Flow","author":"Hirotaka NISHI","date":"2021-03-11","format":false,"excerpt":"Accepts and answers customer inquiries. An answer template is automatically prepared when an inquiry is received via Web form or email. At the Step of [1. Acceptance \/ Answer], the support person creates answer sentences and replies, or if necessary, chooses to ask an advice or translation request. If the\u2026","rel":"","context":"In &quot;Workflow Apps&quot;","block_context":{"text":"Workflow Apps","link":"https:\/\/support.questetra.com\/en\/category\/templates\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/eye-catch-inquiry-response-flow-20130924-220-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/eye-catch-inquiry-response-flow-20130924-220-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/eye-catch-inquiry-response-flow-20130924-220-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/eye-catch-inquiry-response-flow-20130924-220-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/eye-catch-inquiry-response-flow-20130924-220-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/web-form-featured-image.png?fit=1200%2C675&ssl=1","_links":{"self":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/80706","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/comments?post=80706"}],"version-history":[{"count":11,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/80706\/revisions"}],"predecessor-version":[{"id":187493,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/80706\/revisions\/187493"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/79086"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=80706"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=80706"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=80706"},{"taxonomy":"faq_section","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/faq_section?post=80706"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}