{"id":10462,"date":"2020-04-07T14:06:53","date_gmt":"2020-04-07T17:06:53","guid":{"rendered":"http:\/\/kb.elipse.com.br\/en\/?p=10462"},"modified":"2023-10-26T15:10:25","modified_gmt":"2023-10-26T18:10:25","slug":"sending-whatsapp-messages-via-elipse-e3-power","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/","title":{"rendered":"Sending WhatsApp messages via Elipse E3\/Power."},"content":{"rendered":"<p style=\"text-align: justify;\">This article illustrates how to set up your application to send Whatsapp messages via Elipse E3\/Power.<\/p>\n<p style=\"text-align: justify;\">First of all, you will need to know that WhatsApp, a free messaging and calling app, provides an API REST with JSON data formar; this API is what allows receiving and sending messages from your WhatsApp account.<\/p>\n<p style=\"text-align: justify;\">The API follows the default HTTP standard, based on request and response.<\/p>\n<h2><\/h2>\n<h2><b>API do WhatsApp<\/b><\/h2>\n<p style=\"text-align: justify;\"><strong>1.<\/strong> Firstly, you <a href=\"https:\/\/chat-api.com\/en\/\" target=\"_blank\" rel=\"noopener noreferrer\">must access<\/a> the WhatsApp API connecting the phone to the service:<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-9536 size-full\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/1_9530EN.png\" alt=\"\" width=\"1188\" height=\"515\" \/><\/p>\n<p style=\"text-align: justify;\">This access is <strong>free for the first three days<\/strong>. After this, you will need to purchase a service plan.<\/p>\n<p style=\"text-align: justify;\"><strong>2.<\/strong> Then, create your account and log in to it:<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-9544 size-full\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/2_9530EN.png\" alt=\"\" width=\"1191\" height=\"538\" \/><\/p>\n<p style=\"text-align: justify;\"><strong>3.<\/strong> On the Chat API panel, you will need to authorize using the API via WhatsApp Web. To do so, you will receive a QR code on the main page of your personal account.<\/p>\n<p style=\"text-align: justify;\">Then, follow the instructions and open WhatsApp on your phone, access \u00abSettings\u00bb -> WhatsApp Web -> Digitalize QR code.<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/3_9530EN.png\"><img loading=\"lazy\" class=\"size-full wp-image-9538 aligncenter\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/3_9530EN.png\" alt=\"\" width=\"880\" height=\"387\" \/><\/a><\/p>\n<p style=\"text-align: justify;\"><strong>4.<\/strong> After reading the QR code, the authentication status will be displayed as &#8220;authenticated&#8221;, and you will see the URL and API token for using it with Elipse E3.<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/4_9530EN.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-9539\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/4_9530EN.png\" alt=\"\" width=\"1600\" height=\"748\" \/><\/a><\/p>\n<p style=\"text-align: justify;\"><strong>5.<\/strong> To send a test message, access\u00a0 <strong>API Docs<\/strong> on the Admin panel and select\u00a0 <em>\u201c<span style=\"background-color: #339966; color: #ffffff;\">POST <\/span>\/sendMessage <span style=\"color: #339966;\">Send a message to a new or existing chat<\/span>\u201d<\/em>. Then, click \u201cphone\u201d, fill out <strong>phone *<\/strong> and <strong>body * <\/strong>parameters, and after that click\u00a0 SEND. The <strong>Request URL<\/strong> field displays the url that must be used at the http request\u00a0 http (POST) via Elipse E3.<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/5_9530EN.png\"><img loading=\"lazy\" class=\"size-full wp-image-9546 aligncenter\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/5_9530EN.png\" alt=\"\" width=\"1343\" height=\"671\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p><strong>6.<\/strong> Then, you will receive the response to the send request:<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/6_9530EN.png\"><img loading=\"lazy\" class=\"size-full wp-image-9541 aligncenter\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/6_9530EN.png\" alt=\"\" width=\"751\" height=\"664\" \/><\/a><\/p>\n<h2><\/h2>\n<h2><strong>Using WhatsApp with Elipse E3\/Power<\/strong><\/h2>\n<p style=\"text-align: justify;\"><strong>1.<\/strong> To write the API, you will use the\u00a0 <strong>ServerXMLHTTP <\/strong>object, which supplies methods and properties that allow establishing an HTTP connection between files or objects in different web servers. The script below was used for sending messages to the desired phone number:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Sub CommandButton1_Click()\r\n  ''' The first parameter is the recipient's number, including the country code.\r\n  ''' The second paramter is the content of the message.\r\n  number = Screen.Item(\"spNumber\").Value\r\n  msg = Screen.Item(\"spMessage\").Value\r\n\r\n  WhatsAppMessage_Send number, msg   \r\nEnd Sub\r\n\r\nfunction WhatsAppMessage_Send(strNumber, strMessage)\r\n  \r\n API_URL = \"https:\/\/api.chat-api.com\/instanceXXXXX\/sendMessage?token=1cwm5fzehdrmvowc\"\r\n strJson = \"{\"\"phone\"\": \"\"\" & strNumber & \"\"\", \"\"body\"\": \"\"\" & strMessage & \"\"\"}\"\r\n    \r\n   Set oHttp = CreateObject(\"Msxml2.ServerXMLHTTP\")\r\n   oHttp.Open \"POST\", API_URL, False\r\n   oHttp.setRequestHeader \"Content-type\", \"application\/json\"\r\n   oHttp.Send strJson\r\n\r\n  sHTML = oHttp.ResponseText\r\n  MsgBox sHTML\t\r\n  end function\r\n\r\nSub Vazia()\r\nEnd Sub<\/pre>\n<p><strong>2.<\/strong> After the request for sending the message, the following response is displayed:<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/7_9530EN.png\"><img loading=\"lazy\" class=\"size-full wp-image-9542 aligncenter\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/7_9530EN.png\" alt=\"\" width=\"409\" height=\"159\" \/><\/a><\/p>\n<h2><\/h2>\n<h2><strong>Using WhatsApp with Elipse E3\/Power via driver VBScript<\/strong><\/h2>\n<p><strong>1.<\/strong> For performance reasons, we can implement text sending via the JSON-structured VBScript driver just by adding the lines below:<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/8_9530EN.png\"><img loading=\"lazy\" class=\"size-full wp-image-9543 aligncenter\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/8_9530EN.png\" alt=\"\" width=\"443\" height=\"616\" \/><\/a><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">DIM strMessage, strNumber, sHTML \r\n\r\nSub OnWrite_Number(r, v)\r\nstrNumber = v.Value\r\nEnd Sub\r\n\r\nSub OnRead_Number(r, v)\r\n v.Value = strNumber \r\nEnd Sub\r\n\r\nSub OnWrite_Message(r, v)\r\nstrMessage  = v.Value\r\nEnd Sub\r\n\r\nSub OnRead_Message(r, v)\r\n v.Value = strMessage  \r\nEnd Sub\r\n\r\nSub OnRead_Response(r, v)\r\nv.Value = sHTML \r\nEnd Sub\r\n\r\nSub OnWrite_Send(r, v)\r\n API_URL = \"https:\/\/api.chat-api.com\/instanceXXXXX\/sendMessage?token=1cwm5fzehdrmvowc\"\r\n strJson = \"{\"\"phone\"\": \"\"\" & strNumber & \"\"\", \"\"body\"\": \"\"\" & strMessage & \"\"\"}\"\r\n    \r\n   Set oHttp = CreateObject(\"Msxml2.ServerXMLHTTP\")\r\n   oHttp.Open \"POST\", API_URL, False\r\n   oHttp.setRequestHeader \"Content-type\", \"application\/json\"\r\n   oHttp.Send strJson\r\n\r\n  sHTML = oHttp.ResponseText\r\nEnd Sub\r\n\r\n<\/pre>\n<p><strong>2.<\/strong> After that, create four tags in the driver and set them up via Item column (<em>ParamItem <\/em>property), as seen below:<\/p>\n<p><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/9_9530EN.png\"><img loading=\"lazy\" class=\"size-full wp-image-9534 aligncenter\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/9_9530EN.png\" alt=\"\" width=\"507\" height=\"179\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>Finally, you will find a demo application attached to this article. This application was developed with <strong>v5.0.437, <\/strong>and it will demonstrate how to send WhatsApp messages via Elipse E3\/Power.<\/p>\n<h3>Related articles:<\/h3>\n<hr \/>\n<ul>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/sending-telegram-messages-via-elipse-e3-elipse-power\/\" target=\"_blank\" rel=\"noopener noreferrer\">Sending Telegram messages via Elipse E3\/Elipse Power<\/a>.<\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/consuming-and-sending-data-from-a-json-web-service\/\" target=\"_blank\" rel=\"noopener noreferrer\">Consuming and sending data from a JSON Webservice<\/a>.<\/li>\n<\/ul>\n<h3><strong>Attachments:<\/strong><\/h3>\n<p><a href=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/04\/9530\/WhatsApp_Elipse.zip\">WhatsApp_Elipse.zip<\/a><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article illustrates how to set up your application to send Whatsapp messages via Elipse E3\/Power. First of all, you will need to know that WhatsApp, a free messaging and&hellip;<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[763],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Sending WhatsApp messages via Elipse E3\/Power.<\/title>\n<meta name=\"description\" content=\"This article illustrates how to set up your application to send messages from WhatsApp, a messaging and calling app, via Elipse E3\/Power.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sending WhatsApp messages via Elipse E3\/Power.\" \/>\n<meta property=\"og:description\" content=\"This article illustrates how to set up your application to send messages from WhatsApp, a messaging and calling app, via Elipse E3\/Power.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-07T17:06:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-26T18:10:25+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/1_9530EN.png\" \/>\n<meta name=\"author\" content=\"D\u00e9lio Damin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"D\u00e9lio Damin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\"},\"author\":{\"name\":\"D\u00e9lio Damin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\"},\"headline\":\"Sending WhatsApp messages via Elipse E3\/Power.\",\"datePublished\":\"2020-04-07T17:06:53+00:00\",\"dateModified\":\"2023-10-26T18:10:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\"},\"wordCount\":437,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\",\"name\":\"Sending WhatsApp messages via Elipse E3\/Power.\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2020-04-07T17:06:53+00:00\",\"dateModified\":\"2023-10-26T18:10:25+00:00\",\"description\":\"This article illustrates how to set up your application to send messages from WhatsApp, a messaging and calling app, via Elipse E3\/Power.\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sending WhatsApp messages via Elipse E3\/Power.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\",\"name\":\"D\u00e9lio Damin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"caption\":\"D\u00e9lio Damin\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/delio\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Sending WhatsApp messages via Elipse E3\/Power.","description":"This article illustrates how to set up your application to send messages from WhatsApp, a messaging and calling app, via Elipse E3\/Power.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/","og_locale":"en_US","og_type":"article","og_title":"Sending WhatsApp messages via Elipse E3\/Power.","og_description":"This article illustrates how to set up your application to send messages from WhatsApp, a messaging and calling app, via Elipse E3\/Power.","og_url":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2020-04-07T17:06:53+00:00","article_modified_time":"2023-10-26T18:10:25+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/11\/9530\/1_9530EN.png"}],"author":"D\u00e9lio Damin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"D\u00e9lio Damin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/"},"author":{"name":"D\u00e9lio Damin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778"},"headline":"Sending WhatsApp messages via Elipse E3\/Power.","datePublished":"2020-04-07T17:06:53+00:00","dateModified":"2023-10-26T18:10:25+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/"},"wordCount":437,"commentCount":1,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/","url":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/","name":"Sending WhatsApp messages via Elipse E3\/Power.","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2020-04-07T17:06:53+00:00","dateModified":"2023-10-26T18:10:25+00:00","description":"This article illustrates how to set up your application to send messages from WhatsApp, a messaging and calling app, via Elipse E3\/Power.","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/sending-whatsapp-messages-via-elipse-e3-power\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Sending WhatsApp messages via Elipse E3\/Power."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778","name":"D\u00e9lio Damin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","caption":"D\u00e9lio Damin"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/delio\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/10462"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=10462"}],"version-history":[{"count":5,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/10462\/revisions"}],"predecessor-version":[{"id":15208,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/10462\/revisions\/15208"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=10462"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=10462"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=10462"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}