{"id":4403,"date":"2020-05-01T19:47:46","date_gmt":"2020-05-01T19:47:46","guid":{"rendered":"https:\/\/blog.reamaze.com\/?p=4403"},"modified":"2020-05-01T19:47:46","modified_gmt":"2020-05-01T19:47:46","slug":"new-response-templates-api-for-reamaze-developers","status":"publish","type":"post","link":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/","title":{"rendered":"New Response Templates API for Re:amaze Developers"},"content":{"rendered":"<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-4404 lazyload\" data-src=\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg\" alt=\"\" width=\"1884\" height=\"1651\" data-srcset=\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg 1884w, https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020-300x263.jpg 300w, https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020-768x673.jpg 768w, https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020-1024x897.jpg 1024w, https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020-1200x1052.jpg 1200w\" data-sizes=\"(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px\" src=\"data:image\/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" style=\"--smush-placeholder-width: 1884px; --smush-placeholder-aspect-ratio: 1884\/1651;\" \/><\/p>\n<p>There is a brand new API end point for Re:amaze Response Templates! To access this API, head over to https:\/\/www.reamaze.com\/api and click on the &#8220;Response Templates&#8221; section.<\/p>\n<p>Here&#8217;s what&#8217;s new:<\/p>\n<h3>GET \/response_templates<\/h3>\n<p>Issuing a GET call to response_templates will allow you to retrieve Response Templates for the Brand. This will also return personal Response Templates depending on the user role.<\/p>\n<p><em>Example Request<\/em><\/p>\n<pre class=\"api-example rainbow\" data-language=\"shell\">curl <span class=\"string\">'https:\/\/{brand}.reamaze.io\/api\/v1\/response_templates'<\/span> \\\r\n  -u {login-email}:{api-token} \\\r\n  -H <span class=\"string\">'Accept: application\/json'<\/span>\r\n<\/pre>\n<p><em>Example Response<\/em><\/p>\n<pre class=\"api-example\">{\r\n  \"response_templates\": [\r\n    {\r\n      \"id\": 123,\r\n      \"name\": \"Returns Instructions\",\r\n      \"body\": \"...\",\r\n      \"response_template_group\": {\r\n        \"id\": 123,\r\n        \"name\": \"Returns\"\r\n      }\r\n    }\r\n    ...\r\n  ]\r\n}\r\n<\/pre>\n<h3>GET \/response_templates\/{id}<\/h3>\n<p>Issuing a GET call to response_templates will allow you to retrieve a specific Response Template<\/p>\n<p><em>Example Request<\/em><\/p>\n<pre class=\"api-example rainbow\" data-language=\"shell\">curl <span class=\"string\">'https:\/\/{brand}.reamaze.io\/api\/v1\/response_templates\/{id}'<\/span> \\\r\n  -u {login-email}:{api-token} \\\r\n  -H <span class=\"string\">'Accept: application\/json'<\/span>\r\n<\/pre>\n<p><em>Example Response<\/em><\/p>\n<pre class=\"api-example\">{\r\n  \"id\": 123,\r\n  \"name\": \"Returns Instructions\",\r\n  \"body\": \"...\",\r\n  \"response_template_group\": {\r\n    \"id\": 123,\r\n    \"name\": \"Returns\"\r\n  }\r\n}<\/pre>\n<h3>POST \/response_templates<\/h3>\n<p>Issuing a POST call to response_templates will allow you to create a new Response Template<\/p>\n<p><em>Example Request<\/em><\/p>\n<pre class=\"api-example rainbow\" data-language=\"shell\">curl <span class=\"string\">'https:\/\/{brand}.reamaze.io\/api\/v1\/topics\/{slug}\/response_templates'<\/span> \\\r\n  -u {login-email}:{api-token} \\\r\n  -H <span class=\"string\">'Accept: application\/json'<\/span> \\\r\n  -H <span class=\"string\">'Content-type: application\/json'<\/span> \\\r\n  -X POST -d <span class=\"string\">'{\"response_template\": {\"name\": \"foo\", \"body\": \"support\", \"is_personal\": 0}}'<\/span>\r\n<\/pre>\n<p><em>Response<\/em><\/p>\n<p>A successful request will return the JSON for the newly created response template.<\/p>\n<p>A failed request will return an\u00a0<a href=\"http:\/\/en.wikipedia.org\/wiki\/List_of_HTTP_status_codes\">HTTP 422 Unprocessable Entity<\/a>\u00a0with the JSON body explaining the error.<\/p>\n<h3>PUT \/response_templates\/{slug}<\/h3>\n<p>Issuing a PUT call to a specific response template will allow you to update the response template.<\/p>\n<p>Issuing a PUT call to a specific response template will allow you to update the response template.<\/p>\n<p><em>Example Request<\/em><\/p>\n<pre class=\"api-example rainbow\" data-language=\"shell\">curl <span class=\"string\">'https:\/\/{brand}.reamaze.io\/api\/v1\/response_templates\/{id}'<\/span> \\\r\n  -u {login-email}:{api-token} \\\r\n  -H <span class=\"string\">'Accept: application\/json'<\/span> \\\r\n  -H <span class=\"string\">'Content-type: application\/json'<\/span> \\\r\n  -X PUT -d <span class=\"string\">'{\"response_template\": {\"name\": \"new name\", \"body\": \"new body\", \"is_personal\": 0}}'<\/span>\r\n<\/pre>\n<p><em>Response<\/em><\/p>\n<p>A successful request will return the JSON for the updated response template.<\/p>\n<p>A failed request will return an\u00a0<a href=\"http:\/\/en.wikipedia.org\/wiki\/List_of_HTTP_status_codes\">HTTP 422 Unprocessable Entity<\/a>\u00a0with the JSON body explaining the error.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There is a brand new API end point for Re:amaze Response Templates! To access this API, head over to https:\/\/www.reamaze.com\/api and click on the &#8220;Response Templates&#8221; section. Here&#8217;s what&#8217;s new: GET \/response_templates Issuing a GET call to response_templates will allow you to retrieve Response Templates for the Brand. This will also return personal Response Templates &hellip; <a href=\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;New Response Templates API for Re:amaze Developers&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":4404,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-4403","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-feature-updates"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>New Response Templates API for Re:amaze Developers - Re:amaze Blog<\/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:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"New Response Templates API for Re:amaze Developers - Re:amaze Blog\" \/>\n<meta property=\"og:description\" content=\"There is a brand new API end point for Re:amaze Response Templates! To access this API, head over to https:\/\/www.reamaze.com\/api and click on the &#8220;Response Templates&#8221; section. Here&#8217;s what&#8217;s new: GET \/response_templates Issuing a GET call to response_templates will allow you to retrieve Response Templates for the Brand. This will also return personal Response Templates &hellip; Continue reading &quot;New Response Templates API for Re:amaze Developers&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\" \/>\n<meta property=\"og:site_name\" content=\"Re:amaze Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/reamaze\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-01T19:47:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1884\" \/>\n\t<meta property=\"og:image:height\" content=\"1651\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"David\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@reamaze\" \/>\n<meta name=\"twitter:site\" content=\"@reamaze\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"David\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\"},\"author\":{\"name\":\"David\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/#\/schema\/person\/3bffd970e708b17e27bd910fb2ef685e\"},\"headline\":\"New Response Templates API for Re:amaze Developers\",\"datePublished\":\"2020-05-01T19:47:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\"},\"wordCount\":223,\"publisher\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg\",\"articleSection\":[\"Feature Updates\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\",\"url\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\",\"name\":\"New Response Templates API for Re:amaze Developers - Re:amaze Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg\",\"datePublished\":\"2020-05-01T19:47:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage\",\"url\":\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg\",\"contentUrl\":\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg\",\"width\":1884,\"height\":1651},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.reamaze.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Feature Updates\",\"item\":\"https:\/\/www.reamaze.com\/blog\/topics\/feature-updates\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"New Response Templates API for Re:amaze Developers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/#website\",\"url\":\"https:\/\/www.reamaze.com\/blog\/\",\"name\":\"Re:amaze Blog\",\"description\":\"Better Conversations. Happier Customers.\",\"publisher\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.reamaze.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/#organization\",\"name\":\"Re:amaze\",\"url\":\"https:\/\/www.reamaze.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2023\/06\/logo.png\",\"contentUrl\":\"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2023\/06\/logo.png\",\"width\":540,\"height\":190,\"caption\":\"Re:amaze\"},\"image\":{\"@id\":\"https:\/\/www.reamaze.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/reamaze\",\"https:\/\/x.com\/reamaze\",\"https:\/\/www.instagram.com\/reamaze\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/#\/schema\/person\/3bffd970e708b17e27bd910fb2ef685e\",\"name\":\"David\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.reamaze.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6d08d5dc396f94db0978b69bded14b89302ec1384550d7c093cb496967c27962?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6d08d5dc396f94db0978b69bded14b89302ec1384550d7c093cb496967c27962?s=96&d=mm&r=g\",\"caption\":\"David\"},\"url\":\"https:\/\/www.reamaze.com\/blog\/author\/david\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"New Response Templates API for Re:amaze Developers - Re:amaze Blog","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:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/","og_locale":"en_US","og_type":"article","og_title":"New Response Templates API for Re:amaze Developers - Re:amaze Blog","og_description":"There is a brand new API end point for Re:amaze Response Templates! To access this API, head over to https:\/\/www.reamaze.com\/api and click on the &#8220;Response Templates&#8221; section. Here&#8217;s what&#8217;s new: GET \/response_templates Issuing a GET call to response_templates will allow you to retrieve Response Templates for the Brand. This will also return personal Response Templates &hellip; Continue reading \"New Response Templates API for Re:amaze Developers\"","og_url":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/","og_site_name":"Re:amaze Blog","article_publisher":"https:\/\/www.facebook.com\/reamaze","article_published_time":"2020-05-01T19:47:46+00:00","og_image":[{"width":1884,"height":1651,"url":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg","type":"image\/jpeg"}],"author":"David","twitter_card":"summary_large_image","twitter_creator":"@reamaze","twitter_site":"@reamaze","twitter_misc":{"Written by":"David","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#article","isPartOf":{"@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/"},"author":{"name":"David","@id":"https:\/\/www.reamaze.com\/blog\/#\/schema\/person\/3bffd970e708b17e27bd910fb2ef685e"},"headline":"New Response Templates API for Re:amaze Developers","datePublished":"2020-05-01T19:47:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/"},"wordCount":223,"publisher":{"@id":"https:\/\/www.reamaze.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg","articleSection":["Feature Updates"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/","url":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/","name":"New Response Templates API for Re:amaze Developers - Re:amaze Blog","isPartOf":{"@id":"https:\/\/www.reamaze.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage"},"image":{"@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg","datePublished":"2020-05-01T19:47:46+00:00","breadcrumb":{"@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#primaryimage","url":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg","contentUrl":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2020\/05\/Annotation-2020-05-01-124020.jpg","width":1884,"height":1651},{"@type":"BreadcrumbList","@id":"https:\/\/www.reamaze.com\/blog\/new-response-templates-api-for-reamaze-developers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.reamaze.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Feature Updates","item":"https:\/\/www.reamaze.com\/blog\/topics\/feature-updates\/"},{"@type":"ListItem","position":3,"name":"New Response Templates API for Re:amaze Developers"}]},{"@type":"WebSite","@id":"https:\/\/www.reamaze.com\/blog\/#website","url":"https:\/\/www.reamaze.com\/blog\/","name":"Re:amaze Blog","description":"Better Conversations. Happier Customers.","publisher":{"@id":"https:\/\/www.reamaze.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.reamaze.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.reamaze.com\/blog\/#organization","name":"Re:amaze","url":"https:\/\/www.reamaze.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.reamaze.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2023\/06\/logo.png","contentUrl":"https:\/\/blog.reamaze.com\/wp-content\/uploads\/2023\/06\/logo.png","width":540,"height":190,"caption":"Re:amaze"},"image":{"@id":"https:\/\/www.reamaze.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/reamaze","https:\/\/x.com\/reamaze","https:\/\/www.instagram.com\/reamaze"]},{"@type":"Person","@id":"https:\/\/www.reamaze.com\/blog\/#\/schema\/person\/3bffd970e708b17e27bd910fb2ef685e","name":"David","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.reamaze.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6d08d5dc396f94db0978b69bded14b89302ec1384550d7c093cb496967c27962?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6d08d5dc396f94db0978b69bded14b89302ec1384550d7c093cb496967c27962?s=96&d=mm&r=g","caption":"David"},"url":"https:\/\/www.reamaze.com\/blog\/author\/david\/"}]}},"modified_by":"David","_links":{"self":[{"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/posts\/4403","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/comments?post=4403"}],"version-history":[{"count":1,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/posts\/4403\/revisions"}],"predecessor-version":[{"id":4405,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/posts\/4403\/revisions\/4405"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/media\/4404"}],"wp:attachment":[{"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/media?parent=4403"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/categories?post=4403"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.reamaze.com\/blog\/wp-json\/wp\/v2\/tags?post=4403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}