{"id":2360,"date":"2022-07-07T22:16:22","date_gmt":"2022-07-07T17:16:22","guid":{"rendered":"https:\/\/omar-iqbal.com\/?p=2360"},"modified":"2023-11-23T19:06:45","modified_gmt":"2023-11-23T14:06:45","slug":"reserve-and-unreserve-salesline-inventory-in-x","status":"publish","type":"post","link":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/","title":{"rendered":"Reserve and Unreserve salesline inventory in X++"},"content":{"rendered":"\n<p>In this article we are looking into how to reserve inventory of SalesLine with batch and without batch, it also focuses on unreserve of inventory in X++.<\/p>\n\n\n\n<h3 id=\"reserve-partial-inventory-quantity-of-sales-line-with-batch-number\" class=\"wp-block-heading\">Reserve partial inventory quantity of sales line with Batch number<\/h3>\n\n\n\n<p>Use this given method below to reserve partial inventory quantity with batch number for a sales line in X++<\/p>\n\n\n<pre>    \/\/\/ This method reserves SalesLine record with specific InventBatchId. \n    \/\/\/The SalesLine record to reserve.\n    \/\/\/Quantity to reserve.\n    \/\/\/InventBatchId to reserve against\n    public void reservesalesLineByBatchId(SalesLine _salesLine, <br>                                          InventQty _reserveQuantity,             <br>                                          InventBatchId _inventBatchId)\n    {\n        InventUpd_Reservation reservation;\n        InventMovement        movement;<br>        InventDim             inventDimSalesLine, inventDim;<br>      <br>        movement = InventMovement::construct(_salesLine);\n        \n        if (_reserveQuantity &gt; 0)\n        {\n            inventDimSalesLine = InventDim::find(_salesLine.InventDimId);\n\n            inventDim.clear();\n            inventDim.data(inventDimSalesLine);\n            inventDim.InventBatchId = _inventBatchId;<br>\n            inventDim = InventDim::findOrCreate(inventDim);\n\n            reservation = InventUpd_Reservation::newInventDim(movement,<br>                                                             inventDim,<br>                                                           -_reserveQuantity, <br>                                                             false);\n            reservation.updateNow();\n        }\n    }\n<\/pre>\n\n\n<h3 id=\"reserve-inventory-on-sales-line-completely\" class=\"wp-block-heading\">Reserve inventory on sales line completely<\/h3>\n\n\n\n<p>Use this given method below to reserve inventory completely for a sales line in X++<\/p>\n\n\n<pre>     \/\/\/ This method reserves SalesLine record.\n    \/\/\/The SalesLine record to reserve.\n    public void reserveInventory(SalesLine _salesLine)\n    {\n        InventUpd_Reservation reservation;\n        InventMovement        movement;<br><br>        movement = InventMovement::construct(_salesLine);\n\n        real x = abs(movement.transIdSum().reserved());\n\n        InventQty reserveQuantity = _salesLine.QtyOrdered - x;\n\n        if (reserveQuantity &gt; 0)\n        {\n            reservation = InventUpd_Reservation::newMovement(\n                                        movement,\n                                        -reserveQuantity,\n                                        true);\n\n            reservation.updateNow();\n        }\n    }\n<\/pre>\n\n\n<h3 id=\"unreserve-inventory-on-sales-line-completely\" class=\"wp-block-heading\">Unreserve inventory on sales line completely<\/h3>\n\n\n\n<p>Use this given method below to unreserve inventory completely for a sales line in X++<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><summary>    \/\/\/ This method unreserves <c>SalesLine<\/c> record.<\/summary>    \/\/\/ <param name=\"_salesLine\">The <c>SalesLine<\/c> record to unreserve.\n    public void unReserveInventory(SalesLine _salesLine)\n    {\n        InventTrans           inventTrans;\n        InventTransOrigin     inventTransOrigin;\n        InventMovement        inventMovement;\n        InventUpd_Reservation inventUpd_Reservation;\n        SalesLine             salesLine;\n\n        \/\/ Remove reservations and markings on a reserved salesorder\n        while select inventTrans\n            where inventTrans.StatusReceipt     == StatusReceipt::None\n                    &amp;&amp; (inventTrans.StatusIssue == StatusIssue::ReservPhysical\n                    ||  inventTrans.StatusIssue == StatusIssue::ReservOrdered)\n        exists join inventTransOrigin\n            where   inventTransOrigin.RecId == inventTrans.InventTransOrigin\n        exists join salesLine\n            where   salesLine.InventTransId == inventTransOrigin.InventTransId\n                    &amp;&amp;  SalesLine.RecId     == _salesLine.RecId\n        {\n            if (inventTrans.MarkingRefInventTransOrigin)\n            {\n                InventTransOrigin::deleteMarking(inventTrans.MarkingRefInventTransOrigin,   \n                                 inventTrans.InventTransOrigin,\n                                 -inventTrans.Qty,\n                                 true);\n\nInventTransOrigin::deleteMarking(inventTrans.InventTransOrigin,    \n                                 inventTrans.MarkingRefInventTransOrigin,  \n                                 inventTrans.Qty,\n                                 true);\n            }\n\n            if (inventTrans.StatusIssue == StatusIssue::ReservPhysical || \n                inventTrans.StatusIssue == StatusIssue::ReservOrdered)\n            {\n                inventMovement = inventTrans.inventmovement(true);\n                inventUpd_Reservation =   \n                InventUpd_Reservation::newInventDim(inventmovement,\n                                                    inventTrans.inventDim(),\n                                                    -1 * inventTrans.Qty, \n                                                    false);\n                inventUpd_Reservation.updatenow();\n            }\n\n        }\n    }\n<\/pre>\n\n\n\n<p>Thank you for reading this article hope you find it useful.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.linkedin.com\/in\/omar-iqbal-here\/\" target=\"_blank\" rel=\"noreferrer noopener\">Omar Iqbal<\/a><\/p>\n\n\n\n<p>Technical Consultant<\/p>\n\n\n\n<p>References:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><a href=\"https:\/\/dynamicsaxlk.wordpress.com\/2013\/04\/05\/reserve-quantity-by-x-code\/\" target=\"_blank\" rel=\"noreferrer noopener\" title=\"\">https:\/\/dynamicsaxlk.wordpress.com\/2013\/04\/05\/reserve-quantity-by-x-code\/<\/a><\/li><li><a href=\"http:\/\/sujanadynamics.blogspot.com\/2016\/03\/auto-reserve-using-x-code.html\" target=\"_blank\" rel=\"noreferrer noopener\" title=\"\">http:\/\/sujanadynamics.blogspot.com\/2016\/03\/auto-reserve-using-x-code.html<\/a><\/li><li><a href=\"https:\/\/axfactory.wordpress.com\/2015\/02\/28\/reserve-and-remove-reservation-for-an-item-x-ax2012\/\" target=\"_blank\" rel=\"noreferrer noopener\" title=\"\">https:\/\/axfactory.wordpress.com\/2015\/02\/28\/reserve-and-remove-reservation-for-an-item-x-ax2012\/<\/a><\/li><li><a href=\"https:\/\/www.dynamicsuser.net\/t\/delete-physical-reservation-from-x\/46502\" target=\"_blank\" rel=\"noreferrer noopener\" title=\"\">https:\/\/www.dynamicsuser.net\/t\/delete-physical-reservation-from-x\/46502<\/a><\/li><li><a href=\"https:\/\/rahulmsdax.blogspot.com\/2018\/11\/remove-reservations-and-markings-from.html\" target=\"_blank\" rel=\"noreferrer noopener\" title=\"\">https:\/\/rahulmsdax.blogspot.com\/2018\/11\/remove-reservations-and-markings-from.html<\/a><\/li><\/ol>\n","protected":false},"excerpt":{"rendered":"In this article we are looking into how to reserve inventory of SalesLine with batch and without batch,&hellip;\n","protected":false},"author":1,"featured_media":2366,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[19,30],"tags":[21,20,34,33,32,31],"class_list":{"0":"post-2360","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-finance-operations","8":"category-x","9":"tag-finance-operations","10":"tag-finops","11":"tag-microsoft-dynamics-365","12":"tag-microsoft-dynamics-ax","13":"tag-reserve-sales-line","14":"tag-x","15":"cs-entry","16":"cs-video-wrap"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Reserve and Unreserve salesline inventory in X++ - Omar Iqbal&#039;s 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:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Reserve and Unreserve salesline inventory in X++ - Omar Iqbal&#039;s Blog\" \/>\n<meta property=\"og:description\" content=\"In this article we are looking into how to reserve inventory of SalesLine with batch and without batch,&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\" \/>\n<meta property=\"og:site_name\" content=\"Omar Iqbal&#039;s Blog\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/umerk26\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-07T17:16:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-23T14:06:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"518\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"omar_iqbal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/omarshykh\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"omar_iqbal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\"},\"author\":{\"name\":\"omar_iqbal\",\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4\"},\"headline\":\"Reserve and Unreserve salesline inventory in X++\",\"datePublished\":\"2022-07-07T17:16:22+00:00\",\"dateModified\":\"2023-11-23T14:06:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\"},\"wordCount\":149,\"image\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg\",\"keywords\":[\"Finance &amp; Operations\",\"FinOps\",\"Microsoft Dynamics 365\",\"Microsoft Dynamics AX\",\"Reserve Sales line\",\"X++\"],\"articleSection\":[\"Finance &amp; Operations\",\"X++\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\",\"url\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\",\"name\":\"Reserve and Unreserve salesline inventory in X++ - Omar Iqbal&#039;s Blog\",\"isPartOf\":{\"@id\":\"https:\/\/omar-iqbal.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg\",\"datePublished\":\"2022-07-07T17:16:22+00:00\",\"dateModified\":\"2023-11-23T14:06:45+00:00\",\"author\":{\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4\"},\"breadcrumb\":{\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage\",\"url\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg\",\"contentUrl\":\"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg\",\"width\":518,\"height\":500},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/omar-iqbal.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Finance &amp; Operations\",\"item\":\"https:\/\/omar-iqbal.com\/index.php\/category\/finance-operations\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Reserve and Unreserve salesline inventory in X++\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/omar-iqbal.com\/#website\",\"url\":\"https:\/\/omar-iqbal.com\/\",\"name\":\"Omar Iqbal&#039;s Blog\",\"description\":\"Associate Technical Consultant\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/omar-iqbal.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4\",\"name\":\"omar_iqbal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/omar-iqbal.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g\",\"caption\":\"omar_iqbal\"},\"sameAs\":[\"https:\/\/omar-iqbal.com\",\"https:\/\/www.facebook.com\/umerk26\",\"https:\/\/www.instagram.com\/omariqbal_here\/\",\"https:\/\/www.linkedin.com\/in\/omar-iqbal-here\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/omarshykh\"],\"url\":\"https:\/\/omar-iqbal.com\/index.php\/author\/omar_iqbal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Reserve and Unreserve salesline inventory in X++ - Omar Iqbal&#039;s 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:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/","og_locale":"en_US","og_type":"article","og_title":"Reserve and Unreserve salesline inventory in X++ - Omar Iqbal&#039;s Blog","og_description":"In this article we are looking into how to reserve inventory of SalesLine with batch and without batch,&hellip;","og_url":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/","og_site_name":"Omar Iqbal&#039;s Blog","article_author":"https:\/\/www.facebook.com\/umerk26","article_published_time":"2022-07-07T17:16:22+00:00","article_modified_time":"2023-11-23T14:06:45+00:00","og_image":[{"width":518,"height":500,"url":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg","type":"image\/jpeg"}],"author":"omar_iqbal","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/omarshykh","twitter_misc":{"Written by":"omar_iqbal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#article","isPartOf":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/"},"author":{"name":"omar_iqbal","@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4"},"headline":"Reserve and Unreserve salesline inventory in X++","datePublished":"2022-07-07T17:16:22+00:00","dateModified":"2023-11-23T14:06:45+00:00","mainEntityOfPage":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/"},"wordCount":149,"image":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage"},"thumbnailUrl":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg","keywords":["Finance &amp; Operations","FinOps","Microsoft Dynamics 365","Microsoft Dynamics AX","Reserve Sales line","X++"],"articleSection":["Finance &amp; Operations","X++"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/","url":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/","name":"Reserve and Unreserve salesline inventory in X++ - Omar Iqbal&#039;s Blog","isPartOf":{"@id":"https:\/\/omar-iqbal.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage"},"image":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage"},"thumbnailUrl":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg","datePublished":"2022-07-07T17:16:22+00:00","dateModified":"2023-11-23T14:06:45+00:00","author":{"@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4"},"breadcrumb":{"@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#primaryimage","url":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg","contentUrl":"https:\/\/omar-iqbal.com\/wp-content\/uploads\/2022\/07\/Reserve_inventory_title-1.jpg","width":518,"height":500},{"@type":"BreadcrumbList","@id":"https:\/\/omar-iqbal.com\/index.php\/2022\/07\/07\/reserve-and-unreserve-salesline-inventory-in-x\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/omar-iqbal.com\/"},{"@type":"ListItem","position":2,"name":"Finance &amp; Operations","item":"https:\/\/omar-iqbal.com\/index.php\/category\/finance-operations\/"},{"@type":"ListItem","position":3,"name":"Reserve and Unreserve salesline inventory in X++"}]},{"@type":"WebSite","@id":"https:\/\/omar-iqbal.com\/#website","url":"https:\/\/omar-iqbal.com\/","name":"Omar Iqbal&#039;s Blog","description":"Associate Technical Consultant","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/omar-iqbal.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/bf76b3bc6da3287f49fd4713189accd4","name":"omar_iqbal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/omar-iqbal.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/77c8e6d449070e5f91d3609398694fed75736ca7b40f3b8b29a94259cb446d49?s=96&d=mm&r=g","caption":"omar_iqbal"},"sameAs":["https:\/\/omar-iqbal.com","https:\/\/www.facebook.com\/umerk26","https:\/\/www.instagram.com\/omariqbal_here\/","https:\/\/www.linkedin.com\/in\/omar-iqbal-here\/","https:\/\/x.com\/https:\/\/twitter.com\/omarshykh"],"url":"https:\/\/omar-iqbal.com\/index.php\/author\/omar_iqbal\/"}]}},"_links":{"self":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts\/2360","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/comments?post=2360"}],"version-history":[{"count":6,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts\/2360\/revisions"}],"predecessor-version":[{"id":2600,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/posts\/2360\/revisions\/2600"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/media\/2366"}],"wp:attachment":[{"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/media?parent=2360"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/categories?post=2360"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/omar-iqbal.com\/index.php\/wp-json\/wp\/v2\/tags?post=2360"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}