{"id":4893,"date":"2020-10-10T11:21:10","date_gmt":"2020-10-10T11:21:10","guid":{"rendered":"https:\/\/infyblog.zluck.in\/?p=4893"},"modified":"2025-07-17T06:19:33","modified_gmt":"2025-07-17T06:19:33","slug":"export-annotations-in-file-using-pdftron","status":"publish","type":"post","link":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/","title":{"rendered":"Export annotations of PDFTron using jquery"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"4893\" class=\"elementor elementor-4893\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d486e13 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d486e13\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-fc94b38\" data-id=\"fc94b38\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\n\t\t<div class=\"elementor-element elementor-element-43b24c3 elementor-widget elementor-widget-text-editor\" data-id=\"43b24c3\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Here we will learn how to export annotations drawn using PDFTron.<\/p><h2>Events for export annotation<\/h2><p>When we draw any annotation &#8220;annotationChanged&#8221; event will be fired, then we cache that event and we can export that annotation using &#8220;exportAnnotations&#8221;.<\/p><p>When we draw annotations we&#8217;ll save them in the database and when we reload the same document we can retrieve saved annotations from the database and can again show them, we will learn that in my next blog post.<\/p><p>Here is an example of how to save an annotation in a database.<\/p><h3>Example<\/h3>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-12607be elementor-widget elementor-widget-code-highlight\" data-id=\"12607be\" data-element_type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-javascript \">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>WebViewer\r\n   (\r\n     { path: 'path_to_the_PDFTron_'lib'_folder_on_your_server',     \r\n      css: 'webviewer_css',     \r\n      licenseKey: 'YOUR_PDF_TRON_LICENSE_KEY',     \r\n      initialDoc: 'YOUR_FILE URL' \/\/url of a file to load \r\n     }, \r\n    document.getElementById('viewer')\r\n   )     \r\n  .then(function (instance) {        \r\n       let docViewer = instance.docViewer;        \r\n       let annotManager = instance.annotManager;                 \r\n       annotManager.on('annotationChanged', \r\n       (annots, action, e) => {             \r\n            if (e.imported) return;\r\n            annotManager.exportAnnotations({\r\n                links: false,\r\n                widgets: false,\r\n                annotList: annots\r\n            }).then(function (xfdfStrings) {\r\n\r\n                annots.forEach(function (annot) {\r\n                    if (action === \"delete\") {\r\n                        deleteAnnotation(annot.mu);\r\n                    } else {\r\n                        saveAnnotation(annot.mu, xfdfStrings);\r\n                    }\r\n                });\r\n\r\n                if (action === \"add\") {\r\n                    annotManager.selectAnnotation(annots[0]);\r\n\r\n                    if (annots[0] !== 'Comment') {\r\n                        \/\/ to open comment box\r\n\r\ndocument.getElementById('viewer').childNodes[0].contentWindow.document.querySelector\r\n('div[data element=\"annotationCommentButton\"]').click();\r\n                    }\r\n                }\r\n            });\r\n        });\r\n    });\r\n\r\nlet saveAnnotation = function (annotationId, annotationXfdf) {\r\n    let saveAnnotationUrl = '';\r\n    if (fromExtension) {\r\n        saveAnnotationUrl = YOUR_PROJECT_URL\/annotations\/${annotationId};\r\n    } else {\r\n        saveAnnotationUrl = YOUR_PROJECT_URL\/annotations\/${annotationId};\r\n    }\r\n\r\n    $.ajax({\r\n        url: saveAnnotationUrl,\r\n        type: 'POST',\r\n        data: {annotation: annotationXfdf},\r\n        success: function (result) {\r\n            console.log(result);\r\n        },\r\n        error: function (result) {\r\n            console.log(result);\r\n        }\r\n    });\r\n};\r\n\r\nlet deleteAnnotation = function (annotationId) {\r\n\r\n    let deleteAnnotationUrl = '';\r\n    if (fromExtension) {\r\n        deleteAnnotationUrl = YOUR_PROJECT_URL\/annotations\/${annotationId};\r\n    } else {\r\n        deleteAnnotationUrl = YOUR_PROJECT_URL\/annotations\/${annotationId};\r\n    }\r\n\r\n    $.ajax({\r\n        url: deleteAnnotationUrl,\r\n        type: 'DELETE',\r\n        success: function (result) {\r\n            console.log(result);\r\n        },\r\n        error: function (result) {\r\n            console.log(result);\r\n        }\r\n    });\r\n};<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t\n    <div class=\"xs_social_share_widget xs_share_url after_content \t\tmain_content  wslu-style-1 wslu-share-box-shaped wslu-fill-colored wslu-none wslu-share-horizontal wslu-theme-font-no wslu-main_content\">\n\n\t\t\n        <ul>\n\t\t\t        <\/ul>\n    <\/div> \n","protected":false},"excerpt":{"rendered":"<p>Here we will learn how to export annotations drawn using PDFTron. Events for export annotation When we draw any&#8230;<\/p>\n","protected":false},"author":2,"featured_media":4895,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"postBodyCss":"","postBodyMargin":[],"postBodyPadding":[],"postBodyBackground":{"backgroundType":"classic","gradient":""},"two_page_speed":[],"footnotes":""},"categories":[107],"tags":[155,154],"class_list":["post-4893","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-export-annotation","tag-jquery"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Export annotations of PDFTron using jquery<\/title>\n<meta name=\"description\" content=\"Learn to export file annotations using PDFTron, step-by-step guide for setting up, selecting formats, exporting, and integration.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Export annotations of PDFTron using jquery\" \/>\n<meta property=\"og:description\" content=\"Learn to export file annotations using PDFTron, step-by-step guide for setting up, selecting formats, exporting, and integration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog | InfyOm Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/infyom\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-10T11:21:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-17T06:19:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"772\" \/>\n\t<meta property=\"og:image:height\" content=\"484\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InfyOm\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InfyOm\" \/>\n<meta name=\"twitter:site\" content=\"@InfyOm\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InfyOm\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\"},\"author\":{\"name\":\"InfyOm\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\"},\"headline\":\"Export annotations of PDFTron using jquery\",\"datePublished\":\"2020-10-10T11:21:10+00:00\",\"dateModified\":\"2025-07-17T06:19:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\"},\"wordCount\":98,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png\",\"keywords\":[\"Export Annotation\",\"jQuery\"],\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\",\"url\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\",\"name\":\"Export annotations of PDFTron using jquery\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png\",\"datePublished\":\"2020-10-10T11:21:10+00:00\",\"dateModified\":\"2025-07-17T06:19:33+00:00\",\"description\":\"Learn to export file annotations using PDFTron, step-by-step guide for setting up, selecting formats, exporting, and integration.\",\"breadcrumb\":{\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png\",\"width\":772,\"height\":484,\"caption\":\"Export annotations of PDFTron using jquery\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/infyom.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Export annotations of PDFTron using jquery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/infyom.com\/blog\/#website\",\"url\":\"https:\/\/infyom.com\/blog\/\",\"name\":\"Blog | InfyOm Technologies\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/infyom.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/infyom.com\/blog\/#organization\",\"name\":\"InfyOm Technologies\",\"url\":\"https:\/\/infyom.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png\",\"width\":88,\"height\":41,\"caption\":\"InfyOm Technologies\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/infyom\",\"https:\/\/x.com\/InfyOm\",\"https:\/\/www.instagram.com\/infyomtechnologies\/\",\"https:\/\/in.linkedin.com\/company\/infyom-technologies\",\"https:\/\/github.com\/infyomlabs\",\"https:\/\/x.com\/infyom\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\",\"name\":\"InfyOm\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g\",\"caption\":\"InfyOm\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Export annotations of PDFTron using jquery","description":"Learn to export file annotations using PDFTron, step-by-step guide for setting up, selecting formats, exporting, and integration.","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:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/","og_locale":"en_US","og_type":"article","og_title":"Export annotations of PDFTron using jquery","og_description":"Learn to export file annotations using PDFTron, step-by-step guide for setting up, selecting formats, exporting, and integration.","og_url":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/","og_site_name":"Blog | InfyOm Technologies","article_publisher":"https:\/\/www.facebook.com\/infyom","article_published_time":"2020-10-10T11:21:10+00:00","article_modified_time":"2025-07-17T06:19:33+00:00","og_image":[{"width":772,"height":484,"url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png","type":"image\/png"}],"author":"InfyOm","twitter_card":"summary_large_image","twitter_creator":"@InfyOm","twitter_site":"@InfyOm","twitter_misc":{"Written by":"InfyOm","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#article","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/"},"author":{"name":"InfyOm","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754"},"headline":"Export annotations of PDFTron using jquery","datePublished":"2020-10-10T11:21:10+00:00","dateModified":"2025-07-17T06:19:33+00:00","mainEntityOfPage":{"@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/"},"wordCount":98,"commentCount":0,"publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"image":{"@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png","keywords":["Export Annotation","jQuery"],"articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/","url":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/","name":"Export annotations of PDFTron using jquery","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage"},"image":{"@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png","datePublished":"2020-10-10T11:21:10+00:00","dateModified":"2025-07-17T06:19:33+00:00","description":"Learn to export file annotations using PDFTron, step-by-step guide for setting up, selecting formats, exporting, and integration.","breadcrumb":{"@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#primaryimage","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/07\/2020-12-19-5fddb48c346c1-2-1-1.png","width":772,"height":484,"caption":"Export annotations of PDFTron using jquery"},{"@type":"BreadcrumbList","@id":"https:\/\/infyom.com\/blog\/export-annotations-in-file-using-pdftron\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/infyom.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Export annotations of PDFTron using jquery"}]},{"@type":"WebSite","@id":"https:\/\/infyom.com\/blog\/#website","url":"https:\/\/infyom.com\/blog\/","name":"Blog | InfyOm Technologies","description":"","publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/infyom.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/infyom.com\/blog\/#organization","name":"InfyOm Technologies","url":"https:\/\/infyom.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png","width":88,"height":41,"caption":"InfyOm Technologies"},"image":{"@id":"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/infyom","https:\/\/x.com\/InfyOm","https:\/\/www.instagram.com\/infyomtechnologies\/","https:\/\/in.linkedin.com\/company\/infyom-technologies","https:\/\/github.com\/infyomlabs","https:\/\/x.com\/infyom"]},{"@type":"Person","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754","name":"InfyOm","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g","caption":"InfyOm"}}]}},"_links":{"self":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/4893","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/comments?post=4893"}],"version-history":[{"count":17,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/4893\/revisions"}],"predecessor-version":[{"id":8112,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/4893\/revisions\/8112"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media\/4895"}],"wp:attachment":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media?parent=4893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/categories?post=4893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/tags?post=4893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}