{"id":1685,"date":"2019-08-21T13:51:59","date_gmt":"2019-08-21T13:51:59","guid":{"rendered":"https:\/\/poeditor.com\/blog\/?p=1685"},"modified":"2024-03-05T14:56:06","modified_gmt":"2024-03-05T14:56:06","slug":"callbacks-simple-way-get-notified-events-localization-project","status":"publish","type":"post","link":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/","title":{"rendered":"Callbacks: a tool to get localization project alerts"},"content":{"rendered":"\n<p>At POEditor, we are comitted to find the best ways to achieve <a rel=\"noreferrer noopener\" aria-label=\"localization automation (opens in a new tab)\" href=\"https:\/\/poeditor.com\/blog\/how-to-automate-your-localization-workflow-with-poeditor\/\" target=\"_blank\">localization automation<\/a> for our users.<\/p>\n\n\n\n<p>To make devs&#8217; lives easy, we thought it would be nice to offer a way to trigger an external link on particular events. As usual, our users&#8217; feedback weighed heavily in deciding to add this new feature. So without further ado, we give you POEditor callbacks.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"621\" src=\"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-1024x621.png\" alt=\"POEditor Integrations\" class=\"wp-image-4118\" srcset=\"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-1024x621.png 1024w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-300x182.png 300w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-768x466.png 768w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page.png 1362w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">POEditor integrations<\/figcaption><\/figure>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">What are callbacks and why use them<\/h2>\n\n\n\n<p>Callbacks are simple way to&nbsp;get notications about specific events&nbsp;in POEditor localization projects. They <strong>can be set up by the project owner and admins<\/strong>.<\/p>\n\n\n\n<p>They are a good way to save resources, because you no longer need to poll the <a href=\"https:\/\/poeditor.com\/blog\/automating-localization-workflow-poeditor-api-quick-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"API  (opens in a new tab)\">API <\/a>at certain intervals. When the events are triggered, POEditor fires a request to a specific URL you set for that event.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to set up and track callbacks<\/h2>\n\n\n\n<p>Setting up a callback is easy. You need to access <strong>Integrations<\/strong> > <strong>Callbacks<\/strong>. Here, choose a localization project and the event that should trigger the callback, then add the web address you want fired when the event is triggered.<\/p>\n\n\n\n<p>Currently there are three events you can choose: <br> \u2022  Language Completed<br> \u2022  Language Proofread (which requires Proofreading to be enabled in <a href=\"https:\/\/poeditor.com\/kb\/localization-project-settings\" target=\"_blank\" rel=\"noreferrer noopener\">Project Settings<\/a> ) <br> \u2022  New Terms<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"450\" src=\"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/Callbacks_setup-1024x450.png\" alt=\"POEditor callbacks form\" class=\"wp-image-4120\" srcset=\"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/Callbacks_setup-1024x450.png 1024w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/Callbacks_setup-300x132.png 300w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/Callbacks_setup-768x338.png 768w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/Callbacks_setup-1536x676.png 1536w, https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/Callbacks_setup.png 1673w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">POEditor callbacks form<\/figcaption><\/figure>\n\n\n\n<p>To protect the endpoint, it is possible to also add a secret to the calls. The call will have a \u201cX-Callback-Secret\u201d header added with that value.<\/p>\n\n\n\n<p>After you set your callback, you can send a test to your endpoint:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"event\": {\n        \"name\": \"test\"\n    }\n}<\/code><\/pre>\n\n\n\n<p> The JSON payload examples we send for each event: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"event\": {\n        \"name\": \"language.completed\"\n    },\n    \"project\": {\n        \"id\": ******,\n        \"name\": \"Load data #2\",\n        \"public\": 0,\n        \"open\": 0,\n        \"created\": \"2019-05-17T10:31:50+0000\"\n    },\n    \"language\": {\n        \"name\": \"German\",\n        \"code\": \"de\"\n    },\n    \"stats\": {\n        \"strings\": {\n            \"translated\": 3,\n            \"fuzzy\": 0,\n            \"proofread\": 0\n        }\n    }\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"event\": {\n        \"name\": \"language.proofread\"\n    },\n    \"project\": {\n        \"id\": ******,\n        \"name\": \"Android localization\",\n        \"public\": 1,\n        \"open\": 0,\n        \"created\": \"2015-08-13T09:39:32+0000\"\n    },\n    \"language\": {\n        \"name\": \"English\",\n        \"code\": \"en\"\n    }\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"event\": {\n        \"name\": \"new_terms.added\"\n    },\n    \"project\": {\n        \"id\": ******,\n        \"name\": \"Android localization\",\n        \"public\": 1,\n        \"open\": 0,\n        \"created\": \"2015-08-13T09:39:32+0000\"\n    }\n}<\/code><\/pre>\n\n\n\n<p> You can track your callbacks activity with your&nbsp;<a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/poeditor.com\/account\/callbacks_log\" target=\"_blank\">callbacks log<\/a>. The log is available for the last the last <strong>10 days<\/strong>. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Observations<\/h2>\n\n\n\n<p>The data is sent via&nbsp;<strong>POST<\/strong>&nbsp;and the JSON is put in a&nbsp;<code>payload<\/code>&nbsp;parameter.<\/p>\n\n\n\n<p>Keep in mind that we listen for a response with&nbsp;<strong>HTTP status code 200<\/strong>&nbsp;when we send the callback only for a short time (30 seconds at this point). If we don&#8217;t get a reply,  a timeout error is generated after this, <\/p>\n\n\n\n<p>Also, please make sure you&nbsp;<strong>don\u2019t do all your processing on that endpoint<\/strong>&nbsp;and create a separate process for it. If we don\u2019t get a 200 HTTP code when we fire the callback we try again 2 more times. After that we stop trying.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>At POEditor, we are comitted to find the best ways to achieve localization automation for our users. To make devs&#8217; lives easy, we thought it would be nice to offer a way to trigger an external link on particular events. As usual, our users&#8217; feedback weighed heavily in deciding to add this new feature. So [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-1685","post","type-post","status-publish","format-standard","hentry","category-features"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Callbacks: a tool to get localization project alerts - POEditor Blog<\/title>\n<meta name=\"description\" content=\"Callbacks are a tool you can use to get notified of specific events in POEditor localization projects, that can be set up by the project owner and admins.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Callbacks: a tool to get localization project alerts - POEditor Blog\" \/>\n<meta property=\"og:description\" content=\"Callbacks are a tool you can use to get notified of specific events in POEditor localization projects, that can be set up by the project owner and admins.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/\" \/>\n<meta property=\"og:site_name\" content=\"POEditor Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/POEditor\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-21T13:51:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-05T14:56:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-1024x621.png\" \/>\n<meta name=\"author\" content=\"Anca\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@poeditor\" \/>\n<meta name=\"twitter:site\" content=\"@poeditor\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anca\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/\"},\"author\":{\"name\":\"Anca\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/person\\\/17dc166df9c0c7dfde49f069caf6e1c1\"},\"headline\":\"Callbacks: a tool to get localization project alerts\",\"datePublished\":\"2019-08-21T13:51:59+00:00\",\"dateModified\":\"2024-03-05T14:56:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/\"},\"wordCount\":393,\"publisher\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/integrations_page-1024x621.png\",\"articleSection\":[\"Features\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/\",\"name\":\"Callbacks: a tool to get localization project alerts - POEditor Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/integrations_page-1024x621.png\",\"datePublished\":\"2019-08-21T13:51:59+00:00\",\"dateModified\":\"2024-03-05T14:56:06+00:00\",\"description\":\"Callbacks are a tool you can use to get notified of specific events in POEditor localization projects, that can be set up by the project owner and admins.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#primaryimage\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/integrations_page.png\",\"contentUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/integrations_page.png\",\"width\":1362,\"height\":826,\"caption\":\"POEditor Integrations\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/callbacks-simple-way-get-notified-events-localization-project\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Callbacks: a tool to get localization project alerts\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/\",\"name\":\"POEditor Blog\",\"description\":\"All about translation and localization management\",\"publisher\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#organization\",\"name\":\"POEditor\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/logo_head_512_transparent.png\",\"contentUrl\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/logo_head_512_transparent.png\",\"width\":512,\"height\":512,\"caption\":\"POEditor\"},\"image\":{\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/POEditor\",\"https:\\\/\\\/x.com\\\/poeditor\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/poeditor\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCXAk1u8N49VRMAqNneENCFA\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/#\\\/schema\\\/person\\\/17dc166df9c0c7dfde49f069caf6e1c1\",\"name\":\"Anca\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d67b3c02838a428c9c27851a3e7486ec31f7648ae20abb5d4402cbcb8e7093be?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d67b3c02838a428c9c27851a3e7486ec31f7648ae20abb5d4402cbcb8e7093be?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d67b3c02838a428c9c27851a3e7486ec31f7648ae20abb5d4402cbcb8e7093be?s=96&d=mm&r=g\",\"caption\":\"Anca\"},\"url\":\"https:\\\/\\\/poeditor.com\\\/blog\\\/author\\\/anca\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Callbacks: a tool to get localization project alerts - POEditor Blog","description":"Callbacks are a tool you can use to get notified of specific events in POEditor localization projects, that can be set up by the project owner and admins.","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:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/","og_locale":"en_US","og_type":"article","og_title":"Callbacks: a tool to get localization project alerts - POEditor Blog","og_description":"Callbacks are a tool you can use to get notified of specific events in POEditor localization projects, that can be set up by the project owner and admins.","og_url":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/","og_site_name":"POEditor Blog","article_publisher":"https:\/\/www.facebook.com\/POEditor","article_published_time":"2019-08-21T13:51:59+00:00","article_modified_time":"2024-03-05T14:56:06+00:00","og_image":[{"url":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-1024x621.png","type":"","width":"","height":""}],"author":"Anca","twitter_card":"summary_large_image","twitter_creator":"@poeditor","twitter_site":"@poeditor","twitter_misc":{"Written by":"Anca","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#article","isPartOf":{"@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/"},"author":{"name":"Anca","@id":"https:\/\/poeditor.com\/blog\/#\/schema\/person\/17dc166df9c0c7dfde49f069caf6e1c1"},"headline":"Callbacks: a tool to get localization project alerts","datePublished":"2019-08-21T13:51:59+00:00","dateModified":"2024-03-05T14:56:06+00:00","mainEntityOfPage":{"@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/"},"wordCount":393,"publisher":{"@id":"https:\/\/poeditor.com\/blog\/#organization"},"image":{"@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#primaryimage"},"thumbnailUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-1024x621.png","articleSection":["Features"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/","url":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/","name":"Callbacks: a tool to get localization project alerts - POEditor Blog","isPartOf":{"@id":"https:\/\/poeditor.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#primaryimage"},"image":{"@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#primaryimage"},"thumbnailUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page-1024x621.png","datePublished":"2019-08-21T13:51:59+00:00","dateModified":"2024-03-05T14:56:06+00:00","description":"Callbacks are a tool you can use to get notified of specific events in POEditor localization projects, that can be set up by the project owner and admins.","breadcrumb":{"@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#primaryimage","url":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page.png","contentUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/08\/integrations_page.png","width":1362,"height":826,"caption":"POEditor Integrations"},{"@type":"BreadcrumbList","@id":"https:\/\/poeditor.com\/blog\/callbacks-simple-way-get-notified-events-localization-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/poeditor.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Callbacks: a tool to get localization project alerts"}]},{"@type":"WebSite","@id":"https:\/\/poeditor.com\/blog\/#website","url":"https:\/\/poeditor.com\/blog\/","name":"POEditor Blog","description":"All about translation and localization management","publisher":{"@id":"https:\/\/poeditor.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/poeditor.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/poeditor.com\/blog\/#organization","name":"POEditor","url":"https:\/\/poeditor.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/poeditor.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/11\/logo_head_512_transparent.png","contentUrl":"https:\/\/poeditor.com\/blog\/wp-content\/uploads\/2019\/11\/logo_head_512_transparent.png","width":512,"height":512,"caption":"POEditor"},"image":{"@id":"https:\/\/poeditor.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/POEditor","https:\/\/x.com\/poeditor","https:\/\/www.linkedin.com\/company\/poeditor\/","https:\/\/www.youtube.com\/channel\/UCXAk1u8N49VRMAqNneENCFA"]},{"@type":"Person","@id":"https:\/\/poeditor.com\/blog\/#\/schema\/person\/17dc166df9c0c7dfde49f069caf6e1c1","name":"Anca","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d67b3c02838a428c9c27851a3e7486ec31f7648ae20abb5d4402cbcb8e7093be?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d67b3c02838a428c9c27851a3e7486ec31f7648ae20abb5d4402cbcb8e7093be?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d67b3c02838a428c9c27851a3e7486ec31f7648ae20abb5d4402cbcb8e7093be?s=96&d=mm&r=g","caption":"Anca"},"url":"https:\/\/poeditor.com\/blog\/author\/anca\/"}]}},"_links":{"self":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts\/1685","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/comments?post=1685"}],"version-history":[{"count":14,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts\/1685\/revisions"}],"predecessor-version":[{"id":4121,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/posts\/1685\/revisions\/4121"}],"wp:attachment":[{"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/media?parent=1685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/categories?post=1685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/poeditor.com\/blog\/wp-json\/wp\/v2\/tags?post=1685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}