{"id":4014,"date":"2017-09-07T10:48:29","date_gmt":"2017-09-07T10:48:29","guid":{"rendered":"http:\/\/www.plumrocket.com\/blog\/?p=4014"},"modified":"2021-06-30T11:59:21","modified_gmt":"2021-06-30T11:59:21","slug":"fixing-magento-usps-api-issue","status":"publish","type":"post","link":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue","title":{"rendered":"Fixing Magento USPS API issue with First-Class Mail Parcel"},"content":{"rendered":"<p>Critical changes to Magento USPS API!<\/p>\n<p>On September 1st 2017 USPS announced a number of changes to take place, including the reclassification of their &#8220;First-Class Mail Parcel&#8221; Service to &#8220;First-Class Package Service \u2013 Retail&#8221;. This results in Magento Shipping Methods service being affected. For those of you who are experiencing troubles getting proper shipping rates for USPS on their Magento websites &#8211; please follow the easy steps below to rectify the issue:<\/p>\n<p>To resolve the issue, you will need to update your USPS implementation to utilize the new Shipping Method Name.<\/p>\n<p><strong>Important:\u00a0<\/strong><span style=\"color: #ff0000;\">It is not recommended to update your Magento core files directly. Hopefully Magento Inc will come up with the patch soon.<\/span><\/p>\n<h2>Fix for\u00a0<strong>Magento 1.x.x<\/strong><\/h2>\n<p>1. In your server, locate the file:<\/p>\n<pre><pre class=\"brush: php; title: ; notranslate\" title=\"\">\napp\/code\/local\/Mage\/Usa\/Model\/Shipping\/Carrier\/Usps.php\n<\/pre>\n<p>2. Copy this file to the path:<\/p>\n<pre><pre class=\"brush: php; title: ; notranslate\" title=\"\">\napp\/code\/local\/Mage\/USA\/Model\/Shipping\/Carrier\/Usps.php\n<\/pre>\n<p>3. Look for <strong>&#8220;method_to_code&#8221;<\/strong>.<\/p>\n<p>4. Locate the following part of the code:<\/p>\n<pre><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n\/\/ Added because USPS has different services but with same CLASSID value, which is &quot;0&quot;\n'method_to_code' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; array(\n'First-Class Mail Large Envelope' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCLE',\n'First-Class Mail Letter' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCL',\n'First-Class Mail Parcel' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCP',\n),\n<\/pre>\n<p>5. Replace the <strong>\u2018First-Class Mail Parcel\u2019<\/strong> with <strong>\u2018First-Class Package Service \u2013 Retail\u2019 <\/strong>(single dash). Make sure the spelling is correct, otherwise Magento will not be able to handle the new naming.<\/p>\n<pre><pre class=\"brush: php; highlight: [5]; title: ; notranslate\" title=\"\">\n\/\/ Added because USPS has different services but with same CLASSID value, which is &quot;0&quot;\n'method_to_code' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; array(\n'First-Class Mail Large Envelope' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCLE',\n'First-Class Mail Letter' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCL',\n'First-Class Package Service - Retail' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCP',\n),\n<\/pre>\n<p>6. Double check if there are no more occurrences of \u2019First-Class Mail Parcel\u2019. If found, make sure to replace these with \u2018First-Class Package Service &#8211; Retail\u2019 .<\/p>\n<p>7. Optionally, you can also rename Shipping method name. Look for \u20180_FCP\u2019 and change \u2018First-Class Mail Parcel\u2019 to \u2018First-Class Package Service &#8211; Retail\u2019<\/p>\n<h2>Fix For Magento 2.x.x<\/h2>\n<p><strong>Since you should not edit core Magento 2 files &#8211; you need to create the extension that overrides the model &#8220;Magento\\Usps\\Model\\Carrier&#8221;<\/strong>.<\/p>\n<p>The steps below will outline where is the problem in Magento 2 core files.<\/p>\n<p>1. In your server, locate the file:<\/p>\n<pre><pre class=\"brush: php; title: ; notranslate\" title=\"\">\nvendor\/magento\/module-usps\/Model\/Carrier.php\n<\/pre>\n<p>2. Look for <strong>&#8220;method_to_code&#8221;<\/strong>.<\/p>\n<p>3. Locate the following part of the code:<\/p>\n<pre><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n\/\/ Added because USPS has different services but with same CLASSID value, which is &quot;0&quot;\n'method_to_code' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; array(\n'First-Class Mail Large Envelope' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCLE',\n'First-Class Mail Letter' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCL',\n'First-Class Mail Parcel' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCP',\n),\n<\/pre>\n<p>4. Replace the <strong>\u2018First-Class Mail Parcel\u2019<\/strong> with <strong>\u2018First-Class Package Service &#8211; Retail\u2019 <\/strong>(single dash). Make sure the spelling is correct, otherwise Magento will not be able to handle the new naming.<\/p>\n<pre><pre class=\"brush: php; highlight: [5]; title: ; notranslate\" title=\"\">\n\/\/ Added because USPS has different services but with same CLASSID value, which is &quot;0&quot;\n'method_to_code' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; array(\n'First-Class Mail Large Envelope' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCLE',\n'First-Class Mail Letter' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCL',\n'First-Class Package Service - Retail' =&amp;amp;amp;amp;amp;amp;amp;amp;gt; '0_FCP',\n),\n<\/pre>\n<p>5. <strong>Reminder:<\/strong> Make sure not to edit core Magento 2 files. Instead you need to create the extension that overrides the model &#8220;Magento\\Usps\\Model\\Carrier&#8221;. To learn more on how to override model file please <a title=\"How to override model file for Magento 2\" href=\"https:\/\/magento.stackexchange.com\/questions\/160041\/magento2-how-to-override-model-file\" target=\"_blank\" rel=\"noopener\">read here<\/a>.<\/p>\n<h3>Follow Us on Social Media<\/h3>\n<div class=\"calendar-links\"><a href=\"https:\/\/www.facebook.com\/plumrocket\" target=\"_blank\" rel=\"noopener\"><span class=\"soc-button facebook\"><span class=\"soc-icon\">\u00a0<\/span>Follow us on Facebook<\/span><\/a> <a href=\"https:\/\/twitter.com\/plumrocket\" target=\"_blank\" rel=\"noopener\"><span class=\"soc-button twitter\"><span class=\"soc-icon\">\u00a0<\/span>Follow us on Twitter<\/span><\/a> <a href=\"https:\/\/plus.google.com\/+Plumrocket\/\" target=\"_blank\" rel=\"noopener\"><span class=\"soc-button google-plus\"><span class=\"soc-icon\">\u00a0<\/span>Follow us on Google +<\/span><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place, including the reclassification of their &#8220;First-Class Mail Parcel&#8221; Service to &#8220;First-Class Package Service \u2013 Retail&#8221;. This results in Magento Shipping Methods service being affected. For those of you who are experiencing troubles getting proper shipping rates&#133; <a class=\"read-more\" href=\"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":4021,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22,11,12],"tags":[438,439,327,425],"class_list":["post-4014","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ecommerce","category-news","category-programming","tag-development","tag-fix","tag-magento","tag-magento-2"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"plumrocket\"\/>\n\t<meta name=\"keywords\" content=\"development,fix,magento,magento 2\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Plumrocket Blog | For Magento Developers and Enthusiasts\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2017\/09\/upsp-issue.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2017\/09\/upsp-issue.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"586\" \/>\n\t\t<meta property=\"og:image:height\" content=\"440\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2017-09-07T10:48:29+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-06-30T11:59:21+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/plumrocket\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@plumrocket\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2021\/09\/color_vertical_logo1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue#article\",\"name\":\"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog\",\"headline\":\"Fixing Magento USPS API issue with First-Class Mail Parcel\",\"author\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/author\\\/websvit#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/upsp-issue.jpg\",\"width\":586,\"height\":440,\"caption\":\"How to fix USPS First-Class Mail Parcel issue in Magento\"},\"datePublished\":\"2017-09-07T10:48:29+00:00\",\"dateModified\":\"2021-06-30T11:59:21+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue#webpage\"},\"articleSection\":\"eCommerce, News, Programming, development, fix, Magento, magento 2\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/#organization\",\"name\":\"Plumrocket Blog\",\"description\":\"For Magento Developers and Enthusiasts\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/\",\"telephone\":\"+12123925416\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/color_vertical_logo1.png\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue\\\/#organizationLogo\",\"width\":521,\"height\":314,\"caption\":\"Magento Development Company\"},\"image\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.youtube.com\\\/plumrocket\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/plumrocket-inc\",\"https:\\\/\\\/www.yelp.com\\\/biz\\\/plumrocket-new-york-3\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/author\\\/websvit#author\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/author\\\/websvit\",\"name\":\"plumrocket\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d6479b5af6eac763e1302ee1354e543e6b78e779b21bffbc4d599470abbaacc2?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"plumrocket\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue#webpage\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue\",\"name\":\"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog\",\"description\":\"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/#website\"},\"author\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/author\\\/websvit#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/author\\\/websvit#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/upsp-issue.jpg\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue\\\/#mainImage\",\"width\":586,\"height\":440,\"caption\":\"How to fix USPS First-Class Mail Parcel issue in Magento\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/fixing-magento-usps-api-issue#mainImage\"},\"datePublished\":\"2017-09-07T10:48:29+00:00\",\"dateModified\":\"2021-06-30T11:59:21+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/\",\"name\":\"Plumrocket Blog\",\"description\":\"For Magento Developers and Enthusiasts\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/plumrocket.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog","description":"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.","canonical_url":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue","robots":"max-image-preview:large","keywords":"development,fix,magento,magento 2","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue#article","name":"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog","headline":"Fixing Magento USPS API issue with First-Class Mail Parcel","author":{"@id":"https:\/\/plumrocket.com\/blog\/author\/websvit#author"},"publisher":{"@id":"https:\/\/plumrocket.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2017\/09\/upsp-issue.jpg","width":586,"height":440,"caption":"How to fix USPS First-Class Mail Parcel issue in Magento"},"datePublished":"2017-09-07T10:48:29+00:00","dateModified":"2021-06-30T11:59:21+00:00","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue#webpage"},"isPartOf":{"@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue#webpage"},"articleSection":"eCommerce, News, Programming, development, fix, Magento, magento 2"},{"@type":"Organization","@id":"https:\/\/plumrocket.com\/blog\/#organization","name":"Plumrocket Blog","description":"For Magento Developers and Enthusiasts","url":"https:\/\/plumrocket.com\/blog\/","telephone":"+12123925416","logo":{"@type":"ImageObject","url":"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2021\/09\/color_vertical_logo1.png","@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue\/#organizationLogo","width":521,"height":314,"caption":"Magento Development Company"},"image":{"@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue\/#organizationLogo"},"sameAs":["https:\/\/www.youtube.com\/plumrocket","https:\/\/www.linkedin.com\/company\/plumrocket-inc","https:\/\/www.yelp.com\/biz\/plumrocket-new-york-3"]},{"@type":"Person","@id":"https:\/\/plumrocket.com\/blog\/author\/websvit#author","url":"https:\/\/plumrocket.com\/blog\/author\/websvit","name":"plumrocket","image":{"@type":"ImageObject","@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d6479b5af6eac763e1302ee1354e543e6b78e779b21bffbc4d599470abbaacc2?s=96&d=mm&r=g","width":96,"height":96,"caption":"plumrocket"}},{"@type":"WebPage","@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue#webpage","url":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue","name":"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog","description":"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/plumrocket.com\/blog\/#website"},"author":{"@id":"https:\/\/plumrocket.com\/blog\/author\/websvit#author"},"creator":{"@id":"https:\/\/plumrocket.com\/blog\/author\/websvit#author"},"image":{"@type":"ImageObject","url":"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2017\/09\/upsp-issue.jpg","@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue\/#mainImage","width":586,"height":440,"caption":"How to fix USPS First-Class Mail Parcel issue in Magento"},"primaryImageOfPage":{"@id":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue#mainImage"},"datePublished":"2017-09-07T10:48:29+00:00","dateModified":"2021-06-30T11:59:21+00:00"},{"@type":"WebSite","@id":"https:\/\/plumrocket.com\/blog\/#website","url":"https:\/\/plumrocket.com\/blog\/","name":"Plumrocket Blog","description":"For Magento Developers and Enthusiasts","inLanguage":"en-US","publisher":{"@id":"https:\/\/plumrocket.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Plumrocket Blog | For Magento Developers and Enthusiasts","og:type":"article","og:title":"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog","og:description":"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.","og:url":"https:\/\/plumrocket.com\/blog\/fixing-magento-usps-api-issue","og:image":"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2017\/09\/upsp-issue.jpg","og:image:secure_url":"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2017\/09\/upsp-issue.jpg","og:image:width":586,"og:image:height":440,"article:published_time":"2017-09-07T10:48:29+00:00","article:modified_time":"2021-06-30T11:59:21+00:00","article:publisher":"https:\/\/www.facebook.com\/plumrocket","twitter:card":"summary","twitter:site":"@plumrocket","twitter:title":"Fixing Magento USPS API issue with First-Class Mail Parcel | Plumrocket Blog","twitter:description":"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.","twitter:image":"https:\/\/plumrocket.com\/blog\/wp-content\/uploads\/2021\/09\/color_vertical_logo1.png"},"aioseo_meta_data":{"post_id":"4014","title":"Fixing Magento USPS API issue with First-Class Mail Parcel | #site_title","description":"Critical changes to Magento USPS API! On September 1st 2017 USPS announced a number of changes to take place.","keywords":[],"keyphrases":{"focus":[],"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_custom_image_width":null,"og_custom_image_height":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":{"locations":{"business":{"name":"","businessType":"","image":"","areaServed":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"streetLine1":"","streetLine2":"","zipCode":"","city":"","state":"","country":"","addressFormat":"#streetLineOne\n#streetLineTwo\n#city, #state #zipCode"},"contact":{"email":"","phone":"","phoneFormatted":"","fax":"","faxFormatted":""},"ids":{"vat":"","tax":"","chamberOfCommerce":""},"payment":{"priceRange":"","currenciesAccepted":"","methods":""}}},"openingHours":{"useDefaults":true,"show":true,"alwaysOpen":false,"use24hFormat":false,"timezone":"","labels":{"closed":"","alwaysOpen":""},"days":{"monday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"tuesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"wednesday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"thursday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"friday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"saturday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"},"sunday":{"open24h":false,"closed":false,"openTime":"09:00","closeTime":"17:00"}}}},"created":"2021-04-16 17:15:19","updated":"2026-07-03 20:17:20","primary_term":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"twitter_image_url":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-6a47cf30d067a","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"_links":{"self":[{"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/posts\/4014","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/comments?post=4014"}],"version-history":[{"count":35,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/posts\/4014\/revisions"}],"predecessor-version":[{"id":7014,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/posts\/4014\/revisions\/7014"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/media\/4021"}],"wp:attachment":[{"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/media?parent=4014"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/categories?post=4014"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/plumrocket.com\/blog\/wp-json\/wp\/v2\/tags?post=4014"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}