{"id":4967,"date":"2015-12-07T03:02:05","date_gmt":"2015-12-07T03:02:05","guid":{"rendered":"http:\/\/www.jitendrazaa.com\/blog\/?p=4967"},"modified":"2018-07-17T18:29:32","modified_gmt":"2018-07-17T22:29:32","slug":"salesforce-flow-interview-questions-for-admins-part-23","status":"publish","type":"post","link":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/salesforce-flow-interview-questions-for-admins-part-23\/","title":{"rendered":"Salesforce Flow Interview Questions for admins &#8211; Part 23"},"content":{"rendered":"<div class=\"intrinsic-container\"><iframe loading=\"lazy\" src=\"https:\/\/jitendrazaa.com\/blog\/SFDCInterviewList.php?num=23\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span> <\/iframe><\/div>\n<p style=\"text-align: justify;\">Consider it interview questions or FAQs, However below are some high level information or gotchas related to Salesforce Flow.<\/p>\n<figure id=\"attachment_5059\" aria-describedby=\"caption-attachment-5059\" style=\"width: 625px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"size-large wp-image-5059\" src=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions.png?resize=625%2C185&#038;ssl=1\" alt=\"220+ Salesforce Interview Questions\" width=\"625\" height=\"185\" srcset=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions.png?resize=1024%2C303&amp;ssl=1 1024w, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions.png?resize=300%2C89&amp;ssl=1 300w, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions.png?resize=624%2C185&amp;ssl=1 624w, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions.png?w=1904&amp;ssl=1 1904w\" sizes=\"auto, (max-width: 625px) 100vw, 625px\" \/><\/a><figcaption id=\"caption-attachment-5059\" class=\"wp-caption-text\">220+ Salesforce Interview Questions<\/figcaption><\/figure>\n<p style=\"text-align: justify;\"><strong>221. How to create lookup field in Salesforce flow?<\/strong><br \/>\n<strong>Ans :<\/strong> There is no direct way to create a lookup field in flow but we can use workaround mentioned in this <a href=\"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/creating-lookup-field-in-flow\/\">post<\/a>.<\/p>\n<hr \/>\n<p style=\"text-align: justify;\"><strong>222 : How to handle fault in Salesforce flow?<br \/>\nAns :<\/strong> We can send emails or fault screen can be created. If any element is connected to second screen, it automatically becomes fault screen and we can use &#8220;$Flow.FaultMessage&#8221; on screen to show error message. output text can be added on screen with message something like &#8220;Sorry, an error occurred in the page. For help, provide your administrator with the following information: {!$Flow.FaultMessage}&#8221;. Read <a href=\"https:\/\/help.salesforce.com\/HTViewHelpDoc?id=vpm_designer_elements_connector_fault.htm&amp;language=en_US\">more here<\/a>.<\/p>\n<hr \/>\n<p><strong>223 : How to redirect Salesforce flow after completion, if end URL is known in advance?<br \/>\nAns :<\/strong><br \/>\nThere are two approach :<\/p>\n<p>First by using &#8220;retURL&#8221; parameter in URL of flow<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\nhttps:\/\/instance.salesforce.com\/flow\/flowName?retURL=page_name\r\n<\/pre>\n<p>and second, \u00a0if flow is used in Visualforce page then<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;apex:page&gt;\r\n    &lt;flow:interview name=&quot;MyUniqueFlow&quot; finishLocation=&quot;{!$Page.MyUniquePage}&quot;\/&gt;\r\n&lt;\/apex:page&gt;\r\nor\r\n&lt;apex:page&gt;\r\n    &lt;flow:interview name=&quot;MyUniqueFlow&quot; finishLocation=&quot;{!URLFOR('\/home\/home.jsp')}&quot;\/&gt;\r\n&lt;\/apex:page&gt;\r\n<\/pre>\n<hr \/>\n<p style=\"text-align: justify;\"><strong>224 : What are difference between lookup and fast lookup data elements in flow?<br \/>\nAns :<\/strong> Lookup record will return only first matching record however to get all matching record, we should use fast lookup. Any data element\u00a0with prefix &#8220;fast&#8221; means to work in bulk. As shown in below image we have two flavors of Data element in flow for CRUD operation.<!--more--><\/p>\n<figure id=\"attachment_5034\" aria-describedby=\"caption-attachment-5034\" style=\"width: 170px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Salesforce-Flow-Data-ELements.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-5034\" src=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Salesforce-Flow-Data-ELements.png?resize=170%2C186&#038;ssl=1\" alt=\"Salesforce Flow Data Elements\" width=\"170\" height=\"186\" \/><\/a><figcaption id=\"caption-attachment-5034\" class=\"wp-caption-text\">Salesforce Flow Data Elements<\/figcaption><\/figure>\n<hr \/>\n<p style=\"text-align: justify;\"><strong>225: What is use of loop element in Salesforce flow ?<br \/>\nAns :<\/strong> Loop element in Salesforce flow is used to iterate elements in collection. You can compare it with &#8220;for or\u00a0while&#8221; loops in programming language. Below image shows sample of flow, which uses Loop element to mass update lead records by changing some value iteratively\u00a0using loop element. <a href=\"https:\/\/www.youtube.com\/watch?v=WHierpltzAE\">You can check this YouTube video as well to see it in action<\/a>.<\/p>\n<figure id=\"attachment_5053\" aria-describedby=\"caption-attachment-5053\" style=\"width: 645px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Sample-Salesforce-flow-using-loop-element.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-5053\" src=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Sample-Salesforce-flow-using-loop-element.png?resize=645%2C420&#038;ssl=1\" alt=\"Sample Salesforce flow using loop element\" width=\"645\" height=\"420\" srcset=\"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Sample-Salesforce-flow-using-loop-element.png?w=645&amp;ssl=1 645w, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Sample-Salesforce-flow-using-loop-element.png?resize=300%2C195&amp;ssl=1 300w, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/Sample-Salesforce-flow-using-loop-element.png?resize=624%2C406&amp;ssl=1 624w\" sizes=\"auto, (max-width: 645px) 100vw, 645px\" \/><\/a><figcaption id=\"caption-attachment-5053\" class=\"wp-caption-text\">Sample Salesforce flow using loop element<\/figcaption><\/figure>\n<hr \/>\n<p><strong>226: Which interface needs to be implemented in Apex to be used in Flow ?<br \/>\nAns :<\/strong> We can execute apex as well using flow by annotating it with\u00a0&#8220;@InvocableMethod&#8221; and marking method as static. However this method only takes one parameter of type list. If we want to send multiple parameters, then simplest way is to create comma separated list of argument and pass it. In this method, we can break it and use according. Below is sample code<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\nGlobal class Flow_UpdateAccountField {    \r\n    @InvocableMethod\r\n    public static void performUpdate(List&lt;String&gt; lstCSV){\r\n        List&lt;String&gt; recIds = lstCSV&#x5B;0].split(',');\r\n        \/\/0 - AccId, 1-field1__c\r\n\t\tAccount acc = new Account(Id=recIds&#x5B;0], field1__c=recIds&#x5B;1]);\r\n\t\tupdate acc;        \r\n    } \r\n\r\n}\r\n<\/pre>\n<hr \/>\n<p><strong>227 : How to create non mandatory dropdown field in Salesforce flow ?<\/strong><br \/>\n<strong> Ans :<\/strong> We cannot create non mandatory dropdown field in flow (at time of writing this). However there is simple workaround as explained in <a href=\"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/creating-none-required-dropdown-field-in-flow\/\">this post<\/a>.<\/p>\n<hr \/>\n<p><strong>228 : How to create two columns page layout in Salesforce Flow ?<br \/>\nAns :<\/strong> We cannot create two column page layout in Salesforce flow (at time of writing this post). However we can use workaround explained <a href=\"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/creating-two-column-layout-in-flow\/\">in this post<\/a>.<\/p>\n<hr \/>\n<p><strong>229 : How to set finish location of Salesforce Flow for newly created record inside flow ?<br \/>\nAns :<\/strong> Currently there is no way to set finish location of Salesforce flow by point and click or Visualforce. We have to write Apex controller or controller extension to achieve this. Below is sample code.<\/p>\n<p><strong>Visualforce code:<\/strong><\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;apex:page standardController=&quot;Account&quot; extensions=&quot;Flow_redirect_finish&quot;&gt;  \r\n    &lt;flow:interview name=&quot;Create_Contact&quot; interview=&quot;{!contactFlow}&quot; finishlocation=&quot;{!NewRecordId}&quot;&gt;\r\n        &lt;apex:param name=&quot;varAccountId&quot; value=&quot;{!$CurrentPage.parameters.parameter1}&quot;\/&gt;\r\n        &lt;apex:param name=&quot;varCallLogId&quot; value=&quot;{!$CurrentPage.parameters.parameter2}&quot;\/&gt; \r\n    &lt;\/flow:interview&gt; \r\n&lt;\/apex:page&gt;\r\n<\/pre>\n<p><strong>Apex code :<\/strong><\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\npublic class Flow_redirect_finish {\r\n    private Account objAcc ;\r\n\tpublic Flow.Interview.Create_Contact contactFlow { get; set; } \r\n\t\r\n\t\/\/Constructor for Controller extension\r\n    public Flow_redirect_finish(ApexPages.StandardController stdController){\r\n        objAcc = (Account)stdController.getRecord();\r\n    } \r\n\t\r\n    private String readFlowVariable() {\r\n    \tif (contactFlow == null) return '';\r\n    \t\telse return contactFlow.varContactId;\r\n    }\r\n    \r\n    public PageReference getNewRecordId(){ \r\n        return new PageReference('\/' + readFlowVariable() ); \r\n    }\r\n}\r\n<\/pre>\n<hr \/>\n<p><strong>230 : How to create Dependent Picklist ?<\/strong><br \/>\n<strong> Ans :\u00a0<\/strong>Dependent picklist cannot be created in Salesforce flow. However there is work around. Lets say, if we need dependent picklist of level 3, like first select &#8220;country&#8221; and then &#8220;state&#8221; and then &#8220;city&#8221;, then we will need three screen. We can take help of Custom object, Custom setting or <a href=\"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/dependent-picklist-in-salesforce-flow-using-custom-metadata-type-video\/\">Custom Metadata types as discussed in this blog post<\/a>.<\/p>\n<div class=\"intrinsic-container\"><iframe loading=\"lazy\" src=\"https:\/\/jitendrazaa.com\/blog\/SFDCInterviewList.php?num=23\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"> <\/iframe><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\ufeff Consider it interview questions or FAQs, However below are some high level information or gotchas related to Salesforce Flow. 221. How to create lookup field in Salesforce flow? Ans : There is no direct way to create a lookup field in flow but we can use workaround mentioned in this post. 222 : How [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"advanced_seo_description":"","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"jz_research_post":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[9],"tags":[352,124],"class_list":["post-4967","post","type-post","status-publish","format-standard","hentry","category-salesforce","tag-flow","tag-interview-questions"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":4174,"url":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/salesforce-interview-questions-part-22\/","url_meta":{"origin":4967,"position":0},"title":"Salesforce Interview Questions &#8211; Part 22","author":"Jitendra","date":"December 1, 2015","format":false,"excerpt":"Consider it Facts or FAQ or interview questions but its small and important notes about Salesforce. More than 200 interview questions for Salesforce developer, Admin and consultants","rel":"","context":"In &quot;Salesforce&quot;","block_context":{"text":"Salesforce","link":"https:\/\/www.jitendrazaa.com\/blog\/category\/salesforce\/"},"img":{"alt_text":"220+ Salesforce Interview Questions","src":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions-1024x303.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions-1024x303.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/11\/220plus-Interview-Questions-1024x303.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":6538,"url":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/send-salesforce-survey-without-writing-code\/","url_meta":{"origin":4967,"position":1},"title":"Send Salesforce Survey Without Code","author":"Jitendra","date":"October 21, 2018","format":false,"excerpt":"Use Flow & Process builder to send customer satisfaction survey on case close","rel":"","context":"In &quot;Salesforce&quot;","block_context":{"text":"Salesforce","link":"https:\/\/www.jitendrazaa.com\/blog\/category\/salesforce\/"},"img":{"alt_text":"Send Salesforce Survey using Flow and Process Builder","src":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2018\/10\/Send-Salesforce-Survey-using-Flow-and-Process-Builder.png?fit=1120%2C540&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2018\/10\/Send-Salesforce-Survey-using-Flow-and-Process-Builder.png?fit=1120%2C540&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2018\/10\/Send-Salesforce-Survey-using-Flow-and-Process-Builder.png?fit=1120%2C540&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2018\/10\/Send-Salesforce-Survey-using-Flow-and-Process-Builder.png?fit=1120%2C540&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2018\/10\/Send-Salesforce-Survey-using-Flow-and-Process-Builder.png?fit=1120%2C540&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":28,"url":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/salesforce-interview-questions\/","url_meta":{"origin":4967,"position":2},"title":"Salesforce Interview Questions &#8211; Part 1","author":"Jitendra","date":"May 6, 2010","format":false,"excerpt":"Set of most often asked questions on the salesforce.com developement","rel":"","context":"In &quot;Salesforce&quot;","block_context":{"text":"Salesforce","link":"https:\/\/www.jitendrazaa.com\/blog\/category\/salesforce\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3112,"url":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/salesforce-interview-question-part-13\/","url_meta":{"origin":4967,"position":3},"title":"Salesforce Interview Question \u2013 Part 13","author":"Jitendra","date":"September 25, 2012","format":false,"excerpt":"121 : Consider we have overall 90% code coverage however there is one class which have 0% code coverage. Can we still able to deploy that class on production? Ans : Yes. Minimum 1% required for every trigger and there is no such restriction for Apex class. 122 : How\u2026","rel":"","context":"In &quot;Salesforce&quot;","block_context":{"text":"Salesforce","link":"https:\/\/www.jitendrazaa.com\/blog\/category\/salesforce\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30699,"url":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/complete-mulesoft-guide-40-expert-interview-questions\/","url_meta":{"origin":4967,"position":4},"title":"Complete MuleSoft Guide: 40+ Expert Interview Questions &amp; Answers","author":"Jitendra Zaa","date":"December 18, 2025","format":false,"excerpt":"Master MuleSoft interviews with 40+ expert questions covering API-led connectivity, DataWeave, Kafka, Salesforce integration, AI capabilities (Agentforce, MAC Project), CloudHub deployment, VPC\/VPN security, certifications, and career paths. Includes Gartner iPaaS 2025 insights.","rel":"","context":"In &quot;Integration&quot;","block_context":{"text":"Integration","link":"https:\/\/www.jitendrazaa.com\/blog\/category\/integration\/"},"img":{"alt_text":"Complete MuleSoft Guide - 40+ Expert Interview Questions covering API-Led Connectivity, DataWeave, Agentforce AI, CloudHub VPC, Certifications, Career Path, Kafka Integration, and Gartner iPaaS 2025","src":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2025\/12\/mulesoft-interview-questions-2025-featured-new.png?fit=1200%2C704&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2025\/12\/mulesoft-interview-questions-2025-featured-new.png?fit=1200%2C704&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2025\/12\/mulesoft-interview-questions-2025-featured-new.png?fit=1200%2C704&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2025\/12\/mulesoft-interview-questions-2025-featured-new.png?fit=1200%2C704&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2025\/12\/mulesoft-interview-questions-2025-featured-new.png?fit=1200%2C704&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":4632,"url":"https:\/\/www.jitendrazaa.com\/blog\/salesforce\/how-to-use-login-flow-in-salesforce\/","url_meta":{"origin":4967,"position":5},"title":"How to use Login Flow in Salesforce","author":"Jitendra","date":"July 7, 2015","format":false,"excerpt":"What is Login flow in Salesforce and how to solve common yet important problem using Salesforce declarative ability only.","rel":"","context":"In &quot;Salesforce&quot;","block_context":{"text":"Salesforce","link":"https:\/\/www.jitendrazaa.com\/blog\/category\/salesforce\/"},"img":{"alt_text":"Salesforce Login Flow Connection","src":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/07\/Salesforce-Login-Flow-Connection.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/07\/Salesforce-Login-Flow-Connection.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/www.jitendrazaa.com\/blog\/wp-content\/uploads\/2015\/07\/Salesforce-Login-Flow-Connection.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]}],"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/posts\/4967","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/comments?post=4967"}],"version-history":[{"count":16,"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/posts\/4967\/revisions"}],"predecessor-version":[{"id":6547,"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/posts\/4967\/revisions\/6547"}],"wp:attachment":[{"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/media?parent=4967"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/categories?post=4967"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.jitendrazaa.com\/blog\/wp-json\/wp\/v2\/tags?post=4967"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}