{"id":110923,"date":"2018-04-05T05:19:06","date_gmt":"2018-04-05T12:19:06","guid":{"rendered":""},"modified":"2025-06-11T08:09:10","modified_gmt":"2025-06-11T15:09:10","slug":"localize-messages-used-in-flows-using-json-object-variables","status":"publish","type":"post","link":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-automate\/localize-messages-used-in-flows-using-json-object-variables\/","title":{"rendered":"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables"},"content":{"rendered":"<p>In my posts to the Flow blog, I like showing simple techniques to help simplify flow logic definitions. I&#8217;ve used the technique I&#8217;ll discuss here twice in the past week to simplify what would have been far more complex logic. With this pattern, the flows will be far easier to read, maintain, and extend in the future.<\/p>\n<p>The example scenario is as follows: Let&#8217;s say that you have a Flow that will send short messages to customers, but you want the subject, body, etc. to be localized in the customer&#8217;s preferred language. One solution would be to have one Flow for each locale, and each would be customized to a language. The user (or logic) that triggers the process must figure out the right language for each customer, and then run the right Flow. That&#8217;s a.) a nightmare to maintain (propagating changes to each copy, etc.) and b.) no fun, and not blog-worthy. Instead, I&#8217;ll show you a technique that will let you maintain one simple Flow that easily scales to the addition of new localized messages, new languages, and provides a single place for the logic to be defined\/updated in case of requirement changes.<\/p>\n<p>To set the scene, I have set up a simple SharePoint list that will act as my data source &#8212; a list of customer contacts with email address and the preferred language:<\/p>\n<p><img decoding=\"async\" alt=\"SharePoint list with contact address and language\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png\" style=\"width: 609px; height: 152px;\"\/><\/p>\n<p>I&#8217;ll use the &#8220;For a selected item&#8221; trigger to kick off this Flow for a specific list item at a time. After the trigger, I&#8217;ll fetch the full list item with a <code>Get item<\/code> action to fetch the customer contact email address and language column value.\u00a0<\/p>\n<p>One way of solving this would be to switch on the language, and then initialize a variable for each string that I want to use in the email. Then I could embed references to each variable as needed in the <code>Send an email<\/code> action. The downsides of this approach are:<\/p>\n<ol>\n<li>\u200b\u200bAdding a new language means extending the <code>switch <\/code>statement with a new <code>case <\/code>statement. More languages mean a more difficult flow to read and maintain (and not to mention scroll through). Headache.<\/li>\n<\/ol>\n<p>2. Adding a new localized string means going to each and every <code>case <\/code>statement in the switch and updating them. More updates, more chances of typos\/errors. Also a headache.<\/p>\n<p>Instead, we can use an object variable to define our &#8220;lookup table&#8221; that will let us map all languages to a set of strings in a single action. Then we can use a Designer expression to read from the object to select a set of strings all at once. The JSON data I will use in the action looks like the following:\u00a0<\/p>\n<p><code><kbd>{<br \/>\n\u00a0\u00a0\u00a0 \"en-US\": {<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"greeting\": \"Hello\",<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"message\": \"Thank you\"<br \/>\n\u00a0\u00a0\u00a0 },<br \/>\n\u00a0\u00a0\u00a0 \"fr-FR\": {<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"greeting\": \"Bonjour\",<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"message\": \"Merci\"<br \/>\n\u00a0\u00a0\u00a0 },<br \/>\n\u00a0\u00a0\u00a0 \"de-DE\": {<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"greeting\": \"Hallo\",<br \/>\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"message\": \"Danke\"<br \/>\n\u00a0\u00a0\u00a0 }<br \/>\n}<\/kbd><\/code><\/p>\n<p><img decoding=\"async\" alt=\"Initializing object variable with JSON\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image2.png\" style=\"width: 647px; height: 450px;\"\/><\/p>\n<p>After the table itself is initialized, I can initialize a new variable to store the set of strings to use. I&#8217;ll use the SharePoint column value to choose the right set of strings to use in the email. I&#8217;ll use the expression editer to enter my expression that will read from the body (output) of the Get item action, take the Language column value, and access the corresponding table property:<\/p>\n<p><code>variables('localizedStringTable')?[body('Get_item')?['Language']]<\/code><\/p>\n<p>Let&#8217;s break this expression apart and build it back up to see what&#8217;s going on:<\/p>\n<ul>\n<li><code>variables('localizedStringTable')<\/code> &#8212; this references to table object variable we just initialized<\/li>\n<li><code>variables('localizedStringTable')?[ ... ] <\/code>&#8212; this reads a property off of the variable object. The &#8220;?&#8221; signals that the property might not be found. We&#8217;ll pass in the language value into the [ &#8230; ] to look up the property (another object), corresponding to the language.<\/li>\n<li>\u200b<code>body('Get_item)?['Language']<\/code> &#8212; this reads the Language property off of the output object of the <code>Get item <\/code>action.<\/li>\n<\/ul>\n<p>\u200bWhen this expression is evaluated as part of the variable initialization, it will grab the sub-object off of the table variable and assign it. Now we have one object (with properties like <code>greeting <\/code>and <code>message<\/code>) with all the right strings in one place.<\/p>\n<p>But what if the Language for the customer is not found in our table of languages and strings? Right now the flow will fail (or worst case, just send an empty email!). Can we somehow fallback to a default set of strings? Can we do it elegantly?\u00a0<\/p>\n<p>First we&#8217;ll add to the JSON definition to define a &#8220;default&#8221; set of strings (in this case we&#8217;ll duplicate the English strings):<\/p>\n<p>&#8220;default&#8221;: {<br \/>\n\u00a0\u00a0\u00a0 &#8220;greeting&#8221;: &#8220;Hello&#8221;,<br \/>\n\u00a0\u00a0\u00a0 &#8220;message&#8221;: &#8220;Thank you&#8221;<br \/>\n}<\/p>\n<p>If the table doesn&#8217;t contain the user&#8217;s preferred language, we should read this default set of strings, ensuring that we always populate an email. We could first try to read the language from the table (or use a <code>contains <\/code>expression to check before reading), but it is simpler to use <code>coalesce<\/code>. The coalesce function takes a dynamic set of parameters, and returns the first (in the left-to-right sense), parameter that is non-null. We&#8217;ll pass in the above variable reference expression as the first parameter &#8212; if it is found (non-null), <code>coalesce <\/code>will return it. If it is not found, <code>coalesce <\/code>will check the second parameter, which will be our &#8220;default&#8221; lookup:<\/p>\n<p><code>coalesce(variables('localizedStringTable')?[body('Get_item')?['Language']], variables('localizedStringTable')['default'])<\/code><\/p>\n<p><img decoding=\"async\" alt=\"Initializing object variable with coalesce expression\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image3.png\" style=\"width: 1057px; height: 238px;\"\/><\/p>\n<p>Now that we have an object with all of our necessary strings selected, we can compose the email. In various locations within the Send an email card, we can embed expressions to reference the <code>message <\/code>and <code>greeting <\/code>properties:<\/p>\n<ul>\n<li><code>variables('localizedStrings')?['message']<\/code><\/li>\n<li><code>variables('localizedStrings')?['greeting']<\/code><\/li>\n<\/ul>\n<p><img decoding=\"async\" alt=\"Referencing properties of object variable in email subject and body\" src=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image4.png\" style=\"width: 642px; height: 272px;\"\/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Object variables can be used to provide &#8220;lookup table&#8221; functionality to Flows that need to initialize sets of variables together. The coalesce function can help with &#8220;fallback&#8221; or default behavior for keys that aren&#8217;t found in the table. This Flow of the Week will show how to use this technique to select sets of localized strings for use in easily generating emails in different languages from a single Flow.<\/p>\n","protected":false},"author":358,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","ms-ems-related-posts":[],"footnotes":""},"audience":[3378],"content-type":[3423],"job-role":[],"product":[3474],"property":[],"topic":[3435],"coauthors":[2932],"class_list":["post-110923","post","type-post","status-publish","format-standard","hentry","audience-it-professional","content-type-tips-and-guides","product-power-automate","topic-operations"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables - Microsoft Power Platform 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.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables - Microsoft Power Platform Blog\" \/>\n<meta property=\"og:description\" content=\"Object variables can be used to provide &quot;lookup table&quot; functionality to Flows that need to initialize sets of variables together. The coalesce function can help with &quot;fallback&quot; or default behavior for keys that aren&#039;t found in the table. This Flow of the Week will show how to use this technique to select sets of localized strings for use in easily generating emails in different languages from a single Flow.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-automate\/localize-messages-used-in-flows-using-json-object-variables\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Power Platform Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-05T12:19:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-11T15:09:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png\" \/>\n<meta name=\"author\" content=\"David Blyth\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"David Blyth\" \/>\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:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/\"},\"author\":[{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/david-blyth\/\",\"@type\":\"Person\",\"@name\":\"David Blyth\"}],\"headline\":\"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables\",\"datePublished\":\"2018-04-05T12:19:06+00:00\",\"dateModified\":\"2025-06-11T15:09:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/\"},\"wordCount\":877,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png\",\"keywords\":[\"Developers\",\"Flow of the Week\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/\",\"name\":\"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables - Microsoft Power Platform Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png\",\"datePublished\":\"2018-04-05T12:19:06+00:00\",\"dateModified\":\"2025-06-11T15:09:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.webp\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.webp\",\"width\":609,\"height\":152,\"caption\":\"table\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"name\":\"Microsoft Power Platform Blog\",\"description\":\"Innovate with Business Apps\",\"publisher\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization\",\"name\":\"Microsoft Power Platform Blog\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"contentUrl\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png\",\"width\":194,\"height\":145,\"caption\":\"Microsoft Power Platform Blog\"},\"image\":{\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/077e85b5535603cf6aba435b316cb306\",\"name\":\"David Blyth\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/fbacc81e66352b639fd1df0748c2f26d89039caca2b92566e51f51f493dbe14a?s=96&d=mm&r=g2689207d5946fae4dce45a60db85b157\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fbacc81e66352b639fd1df0748c2f26d89039caca2b92566e51f51f493dbe14a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fbacc81e66352b639fd1df0748c2f26d89039caca2b92566e51f51f493dbe14a?s=96&d=mm&r=g\",\"caption\":\"David Blyth\"},\"url\":\"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/dblyth\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables - Microsoft Power Platform 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.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/","og_locale":"en_US","og_type":"article","og_title":"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables - Microsoft Power Platform Blog","og_description":"Object variables can be used to provide \"lookup table\" functionality to Flows that need to initialize sets of variables together. The coalesce function can help with \"fallback\" or default behavior for keys that aren't found in the table. This Flow of the Week will show how to use this technique to select sets of localized strings for use in easily generating emails in different languages from a single Flow.","og_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/power-automate\/localize-messages-used-in-flows-using-json-object-variables\/","og_site_name":"Microsoft Power Platform Blog","article_published_time":"2018-04-05T12:19:06+00:00","article_modified_time":"2025-06-11T15:09:10+00:00","og_image":[{"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png","type":"","width":"","height":""}],"author":"David Blyth","twitter_card":"summary_large_image","twitter_misc":{"Written by":"David Blyth","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#article","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/"},"author":[{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/david-blyth\/","@type":"Person","@name":"David Blyth"}],"headline":"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables","datePublished":"2018-04-05T12:19:06+00:00","dateModified":"2025-06-11T15:09:10+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/"},"wordCount":877,"commentCount":0,"publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png","keywords":["Developers","Flow of the Week"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/","name":"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables - Microsoft Power Platform Blog","isPartOf":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage"},"thumbnailUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.png","datePublished":"2018-04-05T12:19:06+00:00","dateModified":"2025-06-11T15:09:10+00:00","breadcrumb":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#primaryimage","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.webp","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2024\/06\/image1.webp","width":609,"height":152,"caption":"table"},{"@type":"BreadcrumbList","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/2018\/04\/05\/localize-messages-used-in-flows-using-json-object-variables\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/"},{"@type":"ListItem","position":2,"name":"Advanced | Flow of the Week: Localize messages used in Flows using JSON object variables"}]},{"@type":"WebSite","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#website","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","name":"Microsoft Power Platform Blog","description":"Innovate with Business Apps","publisher":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#organization","name":"Microsoft Power Platform Blog","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","contentUrl":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-content\/uploads\/2020\/03\/Microsoft-Logo-e1685482038800.png","width":194,"height":145,"caption":"Microsoft Power Platform Blog"},"image":{"@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/#\/schema\/person\/077e85b5535603cf6aba435b316cb306","name":"David Blyth","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fbacc81e66352b639fd1df0748c2f26d89039caca2b92566e51f51f493dbe14a?s=96&d=mm&r=g2689207d5946fae4dce45a60db85b157","url":"https:\/\/secure.gravatar.com\/avatar\/fbacc81e66352b639fd1df0748c2f26d89039caca2b92566e51f51f493dbe14a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fbacc81e66352b639fd1df0748c2f26d89039caca2b92566e51f51f493dbe14a?s=96&d=mm&r=g","caption":"David Blyth"},"url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/author\/dblyth\/"}]}},"bloginabox_animated_featured_image":null,"bloginabox_display_generated_audio":false,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Power Platform Blog","distributor_original_site_url":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/110923","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/users\/358"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/comments?post=110923"}],"version-history":[{"count":1,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/110923\/revisions"}],"predecessor-version":[{"id":131095,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/posts\/110923\/revisions\/131095"}],"wp:attachment":[{"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/media?parent=110923"}],"wp:term":[{"taxonomy":"audience","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/audience?post=110923"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/content-type?post=110923"},{"taxonomy":"job-role","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/job-role?post=110923"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/product?post=110923"},{"taxonomy":"property","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/property?post=110923"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/topic?post=110923"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.microsoft.com\/en-us\/power-platform\/blog\/wp-json\/wp\/v2\/coauthors?post=110923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}