{"id":552,"date":"2013-12-14T05:53:45","date_gmt":"2013-12-14T05:53:45","guid":{"rendered":"http:\/\/elbsolutions.com\/projects\/?p=552"},"modified":"2022-02-03T11:25:03","modified_gmt":"2022-02-03T17:25:03","slug":"using-zoho-creator-front-end-zoho-reports","status":"publish","type":"post","link":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/","title":{"rendered":"Using ZOHO Creator as a front end to ZOHO Reports"},"content":{"rendered":"<p>Well, it seems that ZOHO Creator has come a ways since last winter. I abandoned using ZOHO Creator which REALLY will someday give Filemaker a run for its money. It is BEYOND incredible what ZOHO has done with their database tool REPORTS which blows MS Access out of the water &#8211; and it is web based natively. I am also beyond impressed with their Spreadsheet tool (which has VBA in it &#8211; and it works!) and their inter-operability with their own platforms and other people&#8217;s platforms.<\/p>\n<p>BUT &#8211; it seems that I should re-try ZOHO Creator as a front end to their reports database tables. Lets give it a go &#8211; follow along &#8211; it is Dec 13th 2013 so this blog article might take a week or so to settle down. Here goes &#8230;<!--more--><\/p>\n<p><a href=\"https:\/\/reports.wiki.zoho.com\/Creating-Data-Entry-Forms-for-Zoho-Reports-using-Zoho-Creator.html\" target=\"_blank\" rel=\"noopener noreferrer\">Our first help doc from ZOHO<\/a> (yes I did look into this brieifly last week).<\/p>\n<p>Step 1: Made a table in ZOHO Reports called TCTest. It has the following columns<\/p>\n<ul>\n<li>ID1 (AutoNumber)<\/li>\n<li>Name<\/li>\n<li>Value<\/li>\n<li>Comment<\/li>\n<\/ul>\n<p>Step 2: Using the link above, we see that their docs are not keeping up with their improvements<\/p>\n<ul>\n<li>I made a form but had to make a new one to get the &#8220;Data will be stored in Zoho Createor to deselect it. There is a caveat in the instructions in a yellow section telling you have to do this as well but comes after you have already begun following the instructions<\/li>\n<li>Well, I only got to the &#8220;add step&#8221; and &#8230; it worked. The instructions and the new format are quite easy to navigate. Next is an update step<\/li>\n<\/ul>\n<p>Now, for bringing your record INTO an editable record. What a PIA &#8211; 4 hours of research (see Summary of Links 1-7 and MUCH searching. At least <a href=\"http:\/\/www.ted.com\/talks\" target=\"_blank\" rel=\"noopener noreferrer\">TED Talks<\/a> was keeping me company while I got this far). All I have this far is to bring up an alert with a map of the results<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\ninvar = map();\r\n \/\/invar.put(&amp;quot;ZOHO_CRITERIA&amp;quot;, &amp;quot;%22ID1%22%3D2&amp;quot;);\r\n mapVarFromRequest = postUrl(&amp;quot;http:\/\/reportsapi.zoho.com\/api\/__username__\/__database__\/TCTest?ZOHO_ACTION=EXPORT&amp;amp;ZOHO_OUTPUT_FORMAT=HTML&amp;amp;ZOHO_ERROR_FORMAT=XML&amp;amp;AUTHTOKEN=__mytoken__&amp;amp;ZOHO_API_VERSION=1.0&amp;amp;ZOHO_CRITERIA=%22ID1%22%3D2&amp;quot;, invar,false);\r\n input.Comment = mapVarFromRequest.toString();\r\n alert(mapVarFromRequest.toString());\r\n\r\n<\/pre>\n<p>So this gives back a response with HTML but with one row &#8211; ID=2. Pasting it here was REALLY long- it had css and everything in it.<\/p>\n<p>OK- so change the ZOHO_OUTPUT_FORMAT=XML, then we populate Comment (for now so we can see it) with the XML. So we need a line that loads XML and parses it to the correct fields<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\nmyURL = &quot;http:\/\/reportsapi.zoho.com\/api\/__email__\/__database__\/TCTest?ZOHO_ACTION=EXPORT&amp;ZOHO_OUTPUT_FORMAT=XML&amp;ZOHO_ERROR_FORMAT=XML&amp;AUTHTOKEN=__token__&amp;ZOHO_API_VERSION=1.0&amp;ZOHO_CRITERIA=%22ID1%22%3D&quot; + idkey;\r\noutMapVar = getUrl(myURL,false);\r\ninput.Comment = outMapVar.get(&quot;responseText&quot;);\r\nstartPath = input.Comment.executeXPath(&quot;\/response\/result\/rows\/row\/node()&quot;);\r\n if (startPath != &quot;&quot;)\r\n{\r\ninput.Name = input.Comment.executeXPath(&quot;\/response\/result\/rows\/row\/column&#x5B;@name='Name']\/text()&quot;);\r\n input.Value = (input.Comment.executeXPath(&quot;\/response\/result\/rows\/row\/column&#x5B; @name = 'Value' ] \/text()&quot;)).toLong();\r\n }\r\n<\/pre>\n<h2>Add\/Update Code<\/h2>\n<p>It took hours of fiddling to come up with the code behind an update\/add button. It works that if the ID # is 0 &#8211; we add a record, else we update. For the add &#8211; another url has to be opened since you cannot update fields on the fly even if you reload. The reload in the code below does nothing but the line below &#8211; DOES contain the updated value in ID1 even though the screen does not show it. If you don&#8217;t go to the new URL new records keep getting added &#8211; SO THIS CODE IS FLAWED WITHOUT the OpenURL step.<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\nif (input.ID1 = 0)\r\n{\r\n \/\/add\r\n creatingMap = map();\r\n creatingMap.put(&quot;Name&quot;, input.Name);\r\n creatingMap.put(&quot;Value&quot;, input.Value.toString());\r\n mapResponse = zoho.reports.createRow(__database__, &quot;TCTest&quot;, creatingMap);\r\n input.ID1 = (mapResponse.get(&quot;ID1&quot;)).toLong();\r\n openUrl(&quot;https:\/\/creator.zoho.com\/__loginname__\/tc-formtest\/#Form:TCTest1?ID1=&quot; + input.ID1, &quot;Same window&quot;);\r\n reload;\r\n\/\/alert(input.ID1 + &quot;add&quot;);\r\n alert(mapResponse);\r\n}\r\nelse\r\n{\r\n \/\/update\r\n \/\/ alert (&quot;Now write something to update, not add&quot;);\r\n alert(input.ID1 + &quot;update&quot;);\r\n creatingMap = map();\r\n creatingMap.put(&quot;Name&quot;, input.Name);\r\n creatingMap.put(&quot;Value&quot;, input.Value.toString());\r\n creatingMap.put(&quot;EffectiveDate&quot;, input.dtDateTime.toString());\r\n mapResponse = zoho.reports.updatedata(__database__&quot;, &quot;TCTest&quot;, creatingMap, &quot;ID1 = &quot; + input.ID1);\r\n}\r\n\r\n<\/pre>\n<h2>Other Items<\/h2>\n<p>So another thing is that you cannot use AutoNumber fields in a formula &#8211; so that means that a URL string that goes to the edit screen &#8211; THIS FORM cannot be built &#8211; because we need the AutoNumber field &#8211; the ID1 field. So that means that I need a separate piece of code to make a list of the Report Database since I cannot make a view and share it. Maybe we can make a Query Report &#8211; I have not yet tried.<\/p>\n<h2>Conclusion<\/h2>\n<p>Like before, I don&#8217;t think things are ready. The integration of Creator and Reports needs to be closer with less code required. Having Report tables as a fundamental underlying table should be (and I am sure one day will be) more native without making maps to link one Creator field with a Reports table field.<\/p>\n<p>Having XPATH is quite frustrating even for us geeks &#8211; yet it is a fundamental part of the code above &#8211; this should not be for a normal Reports user. Geeks are great to have in your back pocket but this necessitates one as a core team member. It keeps me employed a bit longer though which is a good thing.<\/p>\n<p>I will be making a report on another server either in ASPX or in PHP (my customer&#8217;s decision &#8211; based on a some questions I have to ask them). So why shouldn&#8217;t i just do the whole thing &#8211; list and edit screens all in one. ASPX has a some great routines that I have already made for another customer and it worked fine. I will update this when that part is done.<\/p>\n<h2>Summary of Links:<\/h2>\n<ol>\n<li>\u00a0<a style=\"font-style: normal;\" href=\"https:\/\/reports.wiki.zoho.com\/Creating-Data-Entry-Forms-for-Zoho-Reports-using-Zoho-Creator.html\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/reports.wiki.zoho.com\/Creating-Data-Entry-Forms-for-Zoho-Reports-using-Zoho-Creator.html<\/a><\/li>\n<li><a style=\"font-style: normal;\" href=\"https:\/\/forums.zoho.com\/topic\/zoho-reports-4-5-2011\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/forums.zoho.com\/topic\/zoho-reports-4-5-2011<\/a><\/li>\n<li><a style=\"font-style: normal;\" href=\"https:\/\/zohoreportsapi.wiki.zoho.com\/Export.html#QueryStringParameters\" target=\"_blank\" rel=\"noopener noreferrer\">https:\/\/zohoreportsapi.wiki.zoho.com\/Export.html#QueryStringParameters<\/a> (especially the\u00a0<a style=\"font-style: normal;\" href=\"https:\/\/zohoreportsapi.wiki.zoho.com\/Applying-Filters.html\" target=\"_blank\" rel=\"noopener noreferrer\">ZOHO_CRITERIA parameter and its article<\/a> )<\/li>\n<li><a style=\"font-style: normal;\" href=\"http:\/\/blog.stephenrhyne.com\/post\/49756436947\/zoho-creator-map-function-advanced\" target=\"_blank\" rel=\"noopener noreferrer\">map to list etc<\/a><\/li>\n<li><a style=\"font-style: normal;\" href=\"https:\/\/zohoreportsapi.wiki.zoho.com\" target=\"_blank\" rel=\"noopener noreferrer\">.net and ObjectiveC examples of getting ZOHO data<\/a><\/li>\n<li><a style=\"font-style: normal;\" href=\"https:\/\/forums.zoho.com\/topic\/requesting-community-help-on-map-and-posturl\" target=\"_blank\" rel=\"noopener noreferrer\">FINALLY FOUND a sample of how to use postURL function<\/a><\/li>\n<li><a style=\"font-style: normal;\" href=\"http:\/\/www.zoho.com\/creator\/help\/script\/post-url.html\" target=\"_blank\" rel=\"noopener noreferrer\">postURL instructions from ZOHO<\/a>\u00a0\u2026 another <a style=\"font-style: normal;\" href=\"http:\/\/www.zoho.com\/creator\/help\/script\/post-url.html\" target=\"_blank\" rel=\"noopener noreferrer\">link<\/a><\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Well, it seems that ZOHO Creator has come a ways since last winter. I abandoned using ZOHO Creator which REALLY will someday give Filemaker a run for its money. It is BEYOND incredible what ZOHO has done with their database tool REPORTS which blows MS Access out of the water &#8211; and it is web [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-552","post","type-post","status-publish","format-standard","hentry","category-general"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using ZOHO Creator as a front end to ZOHO Reports - ELB Solutions.com Inc.<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using ZOHO Creator as a front end to ZOHO Reports - ELB Solutions.com Inc.\" \/>\n<meta property=\"og:description\" content=\"Well, it seems that ZOHO Creator has come a ways since last winter. I abandoned using ZOHO Creator which REALLY will someday give Filemaker a run for its money. It is BEYOND incredible what ZOHO has done with their database tool REPORTS which blows MS Access out of the water &#8211; and it is web [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/\" \/>\n<meta property=\"og:site_name\" content=\"ELB Solutions.com Inc.\" \/>\n<meta property=\"article:published_time\" content=\"2013-12-14T05:53:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-03T17:25:03+00:00\" \/>\n<meta name=\"author\" content=\"Etienne Bley\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Etienne Bley\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/\"},\"author\":{\"name\":\"Etienne Bley\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\"},\"headline\":\"Using ZOHO Creator as a front end to ZOHO Reports\",\"datePublished\":\"2013-12-14T05:53:45+00:00\",\"dateModified\":\"2022-02-03T17:25:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/\"},\"wordCount\":1135,\"articleSection\":[\"General\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/\",\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/\",\"name\":\"Using ZOHO Creator as a front end to ZOHO Reports - ELB Solutions.com Inc.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#website\"},\"datePublished\":\"2013-12-14T05:53:45+00:00\",\"dateModified\":\"2022-02-03T17:25:03+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/using-zoho-creator-front-end-zoho-reports\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using ZOHO Creator as a front end to ZOHO Reports\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#website\",\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/\",\"name\":\"ELB Solutions.com Inc.\",\"description\":\"Bringing all your IT Pieces together\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\",\"name\":\"Etienne Bley\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"caption\":\"Etienne Bley\"},\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/author\\\/etienne-bley\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using ZOHO Creator as a front end to ZOHO Reports - ELB Solutions.com Inc.","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:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/","og_locale":"en_US","og_type":"article","og_title":"Using ZOHO Creator as a front end to ZOHO Reports - ELB Solutions.com Inc.","og_description":"Well, it seems that ZOHO Creator has come a ways since last winter. I abandoned using ZOHO Creator which REALLY will someday give Filemaker a run for its money. It is BEYOND incredible what ZOHO has done with their database tool REPORTS which blows MS Access out of the water &#8211; and it is web [&hellip;]","og_url":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/","og_site_name":"ELB Solutions.com Inc.","article_published_time":"2013-12-14T05:53:45+00:00","article_modified_time":"2022-02-03T17:25:03+00:00","author":"Etienne Bley","twitter_misc":{"Written by":"Etienne Bley","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/#article","isPartOf":{"@id":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/"},"author":{"name":"Etienne Bley","@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39"},"headline":"Using ZOHO Creator as a front end to ZOHO Reports","datePublished":"2013-12-14T05:53:45+00:00","dateModified":"2022-02-03T17:25:03+00:00","mainEntityOfPage":{"@id":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/"},"wordCount":1135,"articleSection":["General"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/","url":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/","name":"Using ZOHO Creator as a front end to ZOHO Reports - ELB Solutions.com Inc.","isPartOf":{"@id":"https:\/\/elbsolutions.com\/projects\/#website"},"datePublished":"2013-12-14T05:53:45+00:00","dateModified":"2022-02-03T17:25:03+00:00","author":{"@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39"},"breadcrumb":{"@id":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elbsolutions.com\/projects\/using-zoho-creator-front-end-zoho-reports\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elbsolutions.com\/projects\/"},{"@type":"ListItem","position":2,"name":"Using ZOHO Creator as a front end to ZOHO Reports"}]},{"@type":"WebSite","@id":"https:\/\/elbsolutions.com\/projects\/#website","url":"https:\/\/elbsolutions.com\/projects\/","name":"ELB Solutions.com Inc.","description":"Bringing all your IT Pieces together","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elbsolutions.com\/projects\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39","name":"Etienne Bley","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","caption":"Etienne Bley"},"url":"https:\/\/elbsolutions.com\/projects\/author\/etienne-bley\/"}]}},"_links":{"self":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/552","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/comments?post=552"}],"version-history":[{"count":12,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/552\/revisions"}],"predecessor-version":[{"id":2834,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/552\/revisions\/2834"}],"wp:attachment":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/media?parent=552"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/categories?post=552"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/tags?post=552"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}