{"id":17347,"date":"2024-08-02T12:23:29","date_gmt":"2024-08-02T06:53:29","guid":{"rendered":"https:\/\/www.h2kinfosys.com\/blog\/?p=17347"},"modified":"2026-08-03T02:34:01","modified_gmt":"2026-08-03T06:34:01","slug":"how-to-format-data-update-time-values-in-tableau","status":"publish","type":"post","link":"https:\/\/www.h2kinfosys.com\/blog\/how-to-format-data-update-time-values-in-tableau\/","title":{"rendered":"How to Format Data Update Time Values in Tableau"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">When users open a dashboard, Time Values in Tableau one of their first questions is, \u201cHow current is this data?\u201d A clear update timestamp answers that question immediately and helps users determine whether the dashboard is suitable for operational decisions, daily reporting, or historical analysis. However, a value such as  may be technically accurate but difficult to read. The best approach is to retain it as a true Time Values in Tableau field while formatting its display for the intended audience. Professionals who want to strengthen their Tableau skills can explore the H2K Infosys <a href=\"https:\/\/www.h2kinfosys.com\/courses\/tableau-online-training-course-details\/\">Tableau Online Course<\/a>, which provides practical training in data visualization, calculated fields, dashboard development, and date-time formatting techniques.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This guide explains how to format data update Time Values in Tableau, create a clean \u201cLast Updated\u201d indicator, handle imported timestamp strings, account for time zones, and avoid common mistakes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is a Data Update Time Values in Tableau?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A Time Values in Tableau indicates when data was last loaded, refreshed, processed, or changed. It may come from the source system as <code>[Data Update Time]<\/code>, <code>[Refresh Timestamp]<\/code>, or <code>[ETL Completed At]<\/code>. It can also be derived from the latest record:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>{ FIXED : MAX([Transaction Timestamp]) }<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This expression returns the maximum transaction timestamp available to the calculation. It is useful when the source does not provide a dedicated refresh field, although it represents the latest record time not necessarily the exact extract-completion time.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Do not automatically use <code>NOW()<\/code> as the update value. Tableau defines <code>NOW()<\/code> as the current local system date and time, so it usually represents when the calculation is evaluated rather than when the underlying data was refreshed. For an accurate freshness indicator, use a timestamp written by the database, <a href=\"https:\/\/en.wikipedia.org\/wiki\/Extract,_transform,_load\" rel=\"nofollow noopener\" target=\"_blank\">ETL pipeline<\/a>, or extract process whenever possible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Confirm the Field Is Date-Time<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before changing the display, verify that Tableau recognizes the field as Date &amp; Time, not text. In the Data pane, a date-time field has a calendar-and-clock icon. If it shows the <code>Abc<\/code> icon, Tableau is treating it as a string.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To correct the type:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Locate the update-time field in the Data pane.<\/li>\n\n\n\n<li>Click its data type icon.<\/li>\n\n\n\n<li>Select Date &amp; Time.<\/li>\n\n\n\n<li>Inspect the values for nulls or unexpected dates.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Tableau recommends trying Date or Date &amp; Time first. If the conversion produces many nulls, return the field to String and parse it with a calculation. A correctly typed field supports date calculations, specialized filters, sorting, and Tableau\u2019s native formatting controls.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Parse a Timestamp Stored as Text<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Databases, APIs, CSV files, and spreadsheets may deliver timestamps as strings, for example:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>2026-08-03 17:45:22<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When Tableau cannot interpret the value automatically, create a calculated field:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>DATEPARSE(\"yyyy-MM-dd HH:mm:ss\", [Data Update Time Text])<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The pattern must match the source string, including spaces, separators, and component order. For <code>03\/08\/2026 05:45 PM<\/code>, use a pattern such as:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>DATEPARSE(\"dd\/MM\/yyyy hh:mm a\", [Data Update Time Text])<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Connector support for <code>DATEPARSE<\/code> varies. When it is unavailable, try <code>DATE([Field])<\/code> if the string uses a standard format. Time Values in Tableau documents <code>DATE<\/code> as an automatic conversion for many recognizable expressions, while <code>DATEPARSE<\/code> is better when the input pattern must be defined explicitly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Apply a Default Date Format<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The most efficient approach is to assign a default format to the field. Time Values in Tableau this helps the timestamp appear consistently in labels, tooltips, and views.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM-1024x576.png\" alt=\"Time Values in Tableau\" class=\"wp-image-43973\" title=\"\" srcset=\"https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM-1024x576.png 1024w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM-300x169.png 300w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM-768x432.png 768w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM-1536x864.png 1536w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM-150x84.png 150w, https:\/\/www.h2kinfosys.com\/blog\/wp-content\/uploads\/2024\/08\/ChatGPT-Image-Aug-3-2026-11_55_47-AM.png 1672w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In Time Values in Tableau Desktop:<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Right-click <code>[Data Update Time]<\/code> in the Data pane.<\/li>\n\n\n\n<li>Select Default Properties.<\/li>\n\n\n\n<li>Select Date Format.<\/li>\n\n\n\n<li>Choose a standard format or Custom.<\/li>\n\n\n\n<li>Enter the pattern and click OK.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">For example:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>dd MMM yyyy, hh:Nn AMPM<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This can display:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>03 Aug 2026, 05:45 PM<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For an internationally understandable, sortable style, use:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>yyyy-MM-dd Hh:Nn:Ss<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This produces:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>2026-08-03 17:45:22<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Time Values in Tableau Desktop supports default date formatting from the Data pane. To format only one view, right-click the date field and choose Format. In Tableau Cloud or Tableau Server web authoring, choose Format Date.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Understand Custom Date Symbols<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Tableau\u2019s custom symbols differ from conventions used in some programming languages. Common symbols include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>d<\/code> or <code>dd<\/code> for day of month<\/li>\n\n\n\n<li><code>ddd<\/code> or <code>dddd<\/code> for weekday<\/li>\n\n\n\n<li><code>M<\/code>, <code>MM<\/code>, <code>MMM<\/code>, or <code>MMMM<\/code> for month<\/li>\n\n\n\n<li><code>yy<\/code> or <code>yyyy<\/code> for year<\/li>\n\n\n\n<li><code>h<\/code> or <code>Hh<\/code> for hour<\/li>\n\n\n\n<li><code>N<\/code> or <code>Nn<\/code> for minute<\/li>\n\n\n\n<li><code>S<\/code> or <code>Ss<\/code> for second<\/li>\n\n\n\n<li><code>AM\/PM<\/code> or <code>AMPM<\/code> for a 12-hour clock<\/li>\n\n\n\n<li><code>000<\/code> for milliseconds<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">A key detail is that Time Values in Tableau uses <code>N<\/code> or <code>Nn<\/code> for minutes in custom display formatting. Time Values in Tableau also supports combined patterns for date, time, seconds, and milliseconds.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Useful formats include:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>dd MMM yyyy, hh:Nn AMPM<\/code><br><strong>03 Aug 2026, 05:45 PM<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>dddd, dd MMMM yyyy<\/code><br><strong>Monday, 03 August 2026<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>yyyy-MM-dd Hh:Nn<\/code><br><strong>2026-08-03 17:45<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>MMM d, yyyy at h:Nn AMPM<\/code><br><strong>Aug 3, 2026 at 5:45 PM<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Choose the pattern for the dashboard\u2019s purpose. Operational dashboards may need minutes or seconds; monthly executive reports may need only the date.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Build a \u201cLast Updated\u201d Dashboard Sheet<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A dedicated one-mark worksheet gives you more control than placing a raw timestamp in a crowded chart.<\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Create a worksheet named Last Updated.<\/li>\n\n\n\n<li>Drag <code>[Data Update Time]<\/code> to Text on the Marks card.<\/li>\n\n\n\n<li>Use Maximum if the field contains multiple values.<\/li>\n\n\n\n<li>Set it to Exact Date.<\/li>\n\n\n\n<li>Apply the required custom format.<\/li>\n\n\n\n<li>Edit the label to add <code>Last updated:<\/code>.<\/li>\n\n\n\n<li>Remove headers, gridlines, dividers, and unnecessary shading.<\/li>\n\n\n\n<li>Add the sheet to the dashboard.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Using <code>MAX([Data Update Time])<\/code> is appropriate when multiple records contain different timestamps and the latest value represents the freshest data. If every row contains the same batch timestamp, <code>MIN<\/code> and <code>MAX<\/code> return the same result, but <code>MAX<\/code> communicates the intended logic more clearly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can also use dynamic text in worksheet titles, captions, and tooltips. Time Values in Tableau title editor includes an Insert menu for available field values and sheet properties, so the text updates with the view rather than remaining static.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Add a Data Freshness Message<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A timestamp is useful, but a status message may be faster to interpret. First create:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>{ FIXED : MAX([Data Update Time]) }<\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Name it <code>[Latest Data Update]<\/code>. Then create:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>IF DATEDIFF(\"minute\", &#91;Latest Data Update], NOW()) &lt;= 60 THEN\n    \"Updated within the last hour\"\nELSEIF DATEDIFF(\"hour\", &#91;Latest Data Update], NOW()) &lt;= 24 THEN\n    \"Updated today\"\nELSE\n    \"Update may be delayed\"\nEND<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Place the message beside the timestamp. Adjust the thresholds to the actual service-level agreement; a daily finance dashboard and a near-real-time logistics dashboard should not use the same limits.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><code>DATEDIFF<\/code> compares date parts between two values, while <code>NOW()<\/code> supplies the current system date-time. For live connections, that system time may be in another time zone, so validate the calculation after publishing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Check Time-Zone Behavior<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Time-zone differences commonly make a correct timestamp appear wrong after publication. A database may store UTC,Time Values in Tableau Desktop may use the computer\u2019s time, and <a href=\"https:\/\/www.h2kinfosys.com\/blog\/what-is-tableau-cloud-and-why-should-i-use-it\/\" data-type=\"post\" data-id=\"15914\">Tableau Cloud<\/a> or Server may apply site or server settings.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For extract-based data sources, Time Values in Tableau uses UTC as the default site time zone unless an administrator changes it. Tableau also notes that <code>NOW()<\/code> and <code>TODAY()<\/code> are affected by time-zone configuration.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Follow these practices:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Store source timestamps in UTC where possible.<\/li>\n\n\n\n<li>Convert to the business time zone in the database or a governed calculation.<\/li>\n\n\n\n<li>Add the zone to the label, such as <code>Last updated: 03 Aug 2026, 5:45 PM IST<\/code>.<\/li>\n\n\n\n<li>Test the published workbook, not only Time Values in Tableau Desktop.<\/li>\n\n\n\n<li>Avoid fixed offsets when daylight-saving rules may apply.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">A timestamp without a zone can be ambiguous for distributed teams.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common Problems and Fixes<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">The Field Shows <code>Abc<\/code><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The value is text. Change it to Time Values in Tableau or parse it with <code>DATEPARSE<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The Date Appears but the Time Disappears<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Confirm that the field is Date &amp; Time, use <strong>Exact Date<\/strong>, and include hour and minute symbols in the custom pattern.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The Time Is Several Hours Early or Late<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Check the source, database session, site, and user time zones. Also confirm that the timestamp has not already been converted.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The Dashboard Always Says It Was Updated Now<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The calculation probably uses <code>NOW()<\/code>. Replace it with a true refresh timestamp. Refresh behavior also differs among live connections, extracts, and published data sources.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">A String Calculation Is Being Used Only for Appearance<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Prefer native formatting. Time Values in Tableau does not provide a general <code>FORMAT()<\/code> calculation function, and converting a date to text reduces its usefulness for sorting, filtering, and date calculations. Keep the value as Date &amp; Time and format the presentation layer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practices for Formatting Update Times<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Use a format that is readable, unambiguous, and appropriate for the refresh frequency. Include the year when users may view exports or screenshots later. Include the time zone for global audiences. Avoid seconds unless they matter operationally. Use a dedicated timestamp supplied by the refresh process and verify it after publication.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Most importantly, separate data logic fromTime Values in Tableau display formatting. The field should remain a valid date-time value, while Tableau\u2019s formatting controls determine how users see it. This preserves calculations and filtering while presenting a clean message:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1785737920223\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">1. How do I format update time in Tableau?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Right-click the date field, select <strong>Default Properties &gt; Date Format<\/strong>, and choose a standard or custom format.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1785737927148\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">2. Why is my timestamp showing as text?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The field may be stored as a string. Change its data type to <strong>Date &amp; Time<\/strong> or use <code>DATEPARSE()<\/code>.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1785737932828\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">3. How do I show the latest update time?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Use:<br \/><code>MAX([Data Update Time])<\/code><br \/>Then place the field on the <strong>Text<\/strong> mark.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1785737940348\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">4. Can I use NOW() as the refresh time?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Not usually. <code>NOW()<\/code> shows the current system time, not the actual time when the data was refreshed.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1785737951798\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">5. How do I avoid time-zone confusion?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Store timestamps in UTC, convert them to the required local time zone, and include the zone in the labe<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Formatting data update Time Values in Tableau is essential for creating trustworthy and user-friendly dashboards. A clearly displayed refresh timestamp helps users understand whether the information is current enough for reporting, monitoring, and decision-making. Enrolling in a <a href=\"https:\/\/www.h2kinfosys.com\/courses\/tableau-online-training-course-details\/\">Tableau Course Online<\/a> can help learners develop practical skills in date-time formatting, calculated fields, data visualization, and interactive dashboard development.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Start by ensuring that the update field is stored as a true Time Values in Tableau. If the timestamp arrives as text, convert it using Tableau\u2019s data-type controls or a <code>DATEPARSE<\/code> calculation. Once the field is valid, apply a consistent custom format and display the latest value using <code>MAX([Data Update Time])<\/code> or a fixed Level of Detail expression.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Avoid using <code>NOW()<\/code> as a substitute for the actual refresh timestamp, since it normally represents the current system Time Values in Tableau rather than the time the data was loaded. Also account for time-zone differences, especially when dashboards are published to Tableau Cloud or Tableau Server and accessed by users in multiple locations.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When users open a dashboard, Time Values in Tableau one of their first questions is, \u201cHow current is this data?\u201d A clear update timestamp answers that question immediately and helps users determine whether the dashboard is suitable for operational decisions, daily reporting, or historical analysis. However, a value such as may be technically accurate but [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":17352,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":"","_members_access_role":[],"_members_access_error":""},"categories":[804],"tags":[],"class_list":["post-17347","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tableau-tutorials"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/17347","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/comments?post=17347"}],"version-history":[{"count":1,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/17347\/revisions"}],"predecessor-version":[{"id":43974,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/17347\/revisions\/43974"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media\/17352"}],"wp:attachment":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media?parent=17347"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/categories?post=17347"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/tags?post=17347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}