{"id":11,"date":"2011-09-04T12:20:00","date_gmt":"2011-09-04T12:20:00","guid":{"rendered":"http:\/\/www.automationrepository.com\/?p=11"},"modified":"2011-10-09T00:23:49","modified_gmt":"2011-10-08T18:53:49","slug":"difference-between-call-statement-and-normal-function-call-in-qtp","status":"publish","type":"post","link":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/","title":{"rendered":"Difference between Call Statement and normal Function Call in QTP"},"content":{"rendered":"<div style=\"text-align: left;\" dir=\"ltr\">\n<div style=\"text-align: justify;\"><span style=\"font-size: small;\"><strong style=\"font-family: Verdana,sans-serif;\">Call<\/strong><span style=\"font-family: Verdana,sans-serif;\"> is a VBScript Statement that transfers control to a Sub or Function procedure. The syntax of Call statement is &#8211; <\/span><\/span><\/div>\n<div style=\"text-align: justify;\">\n<div style=\"text-align: justify;\">\n<table style=\"border: 1px solid #000000;\" border=\"0\">\n<tbody>\n<tr bgcolor=\"#E0E0E0\">\n<td>\n<div style=\"font-family: 'Courier New',Courier,monospace;\">\n<div style=\"font-family: Verdana,sans-serif; text-align: justify;\"><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\">[Call] functionOrSubName [Argument(s)]<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<div style=\"font-family: Verdana,sans-serif; text-align: justify;\"><em>where, Call is the optional keyword,<\/em><\/div>\n<div style=\"font-family: Verdana,sans-serif; text-align: justify;\"><em><span style=\"font-size: small;\">functionOrSubName <\/span><span style=\"font-size: small;\">is the name of the function or sub to be called,<\/span><\/em><\/div>\n<div style=\"text-align: justify;\"><em><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">Argument(s) <\/span><\/span><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">is the comma-delimited list of parameters.<\/span><\/span><\/em><\/div>\n<div style=\"text-align: justify;\"><span style=\"font-size: small;\"><!--more--><\/span><span style=\"font-family: Verdana,sans-serif; font-size: small;\">Hence to call a function in QTP, we can write &#8216;fnFunction()&#8217; or &#8216;Call fnFunction()<\/span><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">&#8216;. Lets see what are the differences between calling a function with Call statement and without Call statement.<\/span><\/span><a name=\"more\"><\/a><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">We&#8217;ll check the differences between &#8216;fnFunction()&#8217; and &#8216;Call fnFunction()&#8217; based on the following 3 points &#8211;<\/span><\/span><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\"><span style=\"text-decoration: underline;\">a) Case where the function to be called neither has any parameters nor does it return any value:<\/span> In this case, both <\/span><\/span><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">&#8216;Call fnFunction()&#8217; &amp; <\/span><\/span><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">&#8216;fnFunction()&#8217; behave in the same manner.<\/span><\/span><br \/>\n<span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif;\">Example:<\/span><\/span><\/p>\n<div style=\"text-align: justify;\">\n<div style=\"text-align: justify;\">\n<table style=\"border: 1px solid #000000;\" border=\"0\">\n<tbody>\n<tr bgcolor=\"#E0E0E0\">\n<td>\n<div style=\"font-family: 'Courier New',Courier,monospace;\">\n<div style=\"font-family: Verdana,sans-serif; text-align: justify;\"><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #38761d;\">&#8216;&#8212;-Function Definition\u00a0<\/span><br \/>\n<span style=\"color: blue;\">Function<\/span> fnNoParam_NoReturnVal()<br \/>\n<span style=\"color: blue;\">msgbox<\/span> <span style=\"color: #990000;\">&#8220;No Parameters &amp; No Return Values&#8221;<\/span><br \/>\n<span style=\"color: blue;\">End<\/span> Function<br \/>\n<br style=\"color: #38761d;\" \/><span style=\"color: #38761d;\">&#8216;&#8212;-Function Call<\/span><\/span><br \/>\n<span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\">fnNoParam_NoReturnVal<\/span><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\">()<br \/>\n<span style=\"color: blue;\">Call<\/span> <\/span><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\">fnNoParam_NoReturnVal<\/span><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\">()<\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p><em style=\"color: black; font-family: Verdana,sans-serif;\">In this example, both the function calls behave in the same manner and display the text <\/em><em style=\"color: black;\"><span style=\"font-family: Verdana,sans-serif; font-size: small;\">&#8220;<\/span><span style=\"font-family: Verdana,sans-serif; font-size: small;\">No Parameters &amp; No Return Values<\/span><\/em><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #990000;\"><em style=\"color: black; font-family: Verdana,sans-serif;\">&#8221; in a message box.<\/em><\/span><\/span><\/p>\n<p><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #990000;\"><span style=\"color: black; text-decoration: underline;\"><span style=\"font-family: Verdana,sans-serif;\">b) Case where the function to be called has arguments but doesn&#8217;t return any value:<\/span><\/span><span style=\"color: black;\"><span style=\"font-family: Verdana,sans-serif;\"> In a normal function call, the user can pass the parameters with and without parentheses. i.e. both &#8216;fnFunction(param)&#8217; &amp; &#8216;fnFunction param&#8217; would work. But if Call statement is used here, parentheses <strong>must <\/strong>be provided while passing the arguments, else QTP would throw a run-time error.<\/span><\/span><\/span><\/span><br \/>\n<span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #990000;\"><span style=\"color: black;\"><span style=\"font-family: Verdana,sans-serif;\">Example:<\/span><\/span><\/span><\/span><\/p>\n<div style=\"text-align: justify;\">\n<div style=\"text-align: left;\">\n<table style=\"border: 1px solid #000000; margin-left: 0px; margin-right: auto; text-align: left;\" width=\"748\" border=\"0\">\n<tbody>\n<tr bgcolor=\"#E0E0E0\">\n<td>\n<div style=\"font-family: 'Courier New',Courier,monospace;\">\n<div style=\"font-family: Verdana,sans-serif; text-align: left;\"><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #38761d;\"><span style=\"color: #008000;\">&#8216;&#8212;-Function Definition<\/span><br \/>\n<span style=\"color: black;\"><span style=\"color: blue;\">Function<\/span> fnNoReturnVal(param)<\/span><br style=\"color: black;\" \/><span style=\"color: black;\">\u00a0\u00a0\u00a0 <span style=\"color: blue;\">msgbox<\/span> param<\/span><br style=\"color: black;\" \/><span style=\"color: black;\"><span style=\"color: blue;\">End<\/span> Function<\/span><\/span><\/span><\/div>\n<\/div>\n<div style=\"font-family: Verdana,sans-serif; text-align: left;\">\n<p><span style=\"color: #008000;\">&#8216;&#8212;-Function Call<\/span><br \/>\nfnNoReturnVal(<span style=\"color: #993300;\">&#8220;some parameter&#8221;<\/span>)\u00a0 <span style=\"color: #008000;\">&#8216;displays message box<\/span><br \/>\nfnNoReturnVal <span style=\"color: #993300;\">&#8220;some parameter&#8221;<\/span>\u00a0 <span style=\"color: #008000;\">&#8216;displays message box<\/span><\/p>\n<p>Call fnNoReturnVal(<span style=\"color: #993300;\">&#8220;some parameter&#8221;<\/span>)\u00a0 <span style=\"color: #008000;\">&#8216;displays message box<\/span><br \/>\n<span style=\"color: #008000;\">&#8216;Call fnNoReturnVal &#8220;some parameter&#8221;\u00a0 &#8216;runtime error<\/span><\/p>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div style=\"text-align: justify;\"><span style=\"font-size: small;\"><span style=\"font-family: Verdana,sans-serif; text-decoration: underline;\">c) Case where function to be called returns a value:<\/span><span style=\"font-family: Verdana,sans-serif;\"> In this case, the normal function call (without call statement) can capture the returned value. But if we use Call statement here, the function&#8217;s return value can&#8217;t be captured.<\/span><\/span><\/div>\n<p><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #990000;\"><span style=\"color: black;\"><span style=\"font-family: Verdana,sans-serif;\">Example:<\/span><\/span><\/span><\/span><\/p>\n<div style=\"text-align: justify;\">\n<div style=\"text-align: left;\">\n<table style=\"border: 1px solid #000000; margin-left: 0px; margin-right: auto; text-align: left;\" border=\"0\">\n<tbody>\n<tr bgcolor=\"#E0E0E0\">\n<td>\n<div style=\"font-family: 'Courier New',Courier,monospace;\">\n<div style=\"font-family: Verdana,sans-serif; text-align: left;\"><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #38761d;\">&#8216;&#8212;-Function Definition<br \/>\n<span style=\"color: black;\"><span style=\"color: blue;\">Function<\/span> fnReturnsVal()<br \/>\nfnReturnsValue = <span style=\"color: #990000;\">&#8220;this string is returned back&#8221;<\/span><br \/>\n<span style=\"color: blue;\">End<\/span> Function<\/span><\/span><\/span><\/div>\n<\/div>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<p><span style=\"color: #38761d;\">&#8216;&#8212;-Function Call<\/span><br \/>\nstr1 = fnReturnsVal() <span style=\"color: #38761d;\">&#8216;returns value to str1 variable<\/span><br \/>\n<span style=\"color: #38761d;\">&#8216;str2 = Call fnReturnsVal() &#8216;runtime error<\/span><span style=\"color: #38761d;\">\u00a0\u00a0\u00a0<\/span><\/p>\n<p><em><span style=\"color: black; font-family: Verdana,sans-serif;\">In this example, &#8216;<\/span><\/em><span style=\"font-family: 'Courier New',Courier,monospace; font-size: small;\"><span style=\"color: #38761d;\"><span style=\"color: black;\"><span style=\"color: #38761d;\"><em><span style=\"color: black; font-family: Verdana,sans-serif;\">str2 = <span style=\"color: blue;\">Call<\/span> fnReturnsVal()&#8217; throws a runtime error as Call statement doesn&#8217;t allow us to capture function&#8217;s returned value.<\/span><\/em><\/span><\/span><\/span><\/span><\/p>\n<div style=\"font-family: Verdana,sans-serif; border: 1px solid #C8B560; padding: 3mm; background: #FFF8C6; text-align: center;\">\n<p>If you enjoyed this article, you can join our blog to get free email updates directly in your inbox.<\/p>\n<form style=\"text-align: center;\" action=\"http:\/\/feedburner.google.com\/fb\/a\/mailverify\" method=\"post\" onsubmit=\"window.open('http:\/\/feedburner.google.com\/fb\/a\/mailverify?uri=automationrepository\/feeds', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true\" target=\"popupwindow\"><input style=\"width: 160px; height: 24px;\" onfocus=\"if (this.value == 'Enter Your Email Address') {this.value = '';}\" onblur=\"if (this.value == '') {this.value = 'Enter Your Email Address';}\" type=\"text\" value=\"Enter Your Email Address\" \/> <input type=\"hidden\" name=\"uri\" value=\"automationrepository\/feeds\" \/> <input type=\"hidden\" name=\"loc\" value=\"en_US\" \/> <input type=\"submit\" value=\"Subscribe\" \/><\/p>\n<p style=\"text-align: justify;\">\n<\/form>\n<\/div>\n<div class=\"blogger-post-footer\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com\" alt=\"\" width=\"1\" height=\"1\" \/><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Call is a VBScript Statement that transfers control to a Sub or Function procedure. The syntax of Call statement is &#8211; [Call] functionOrSubName [Argument(s)] where, Call is the optional keyword, functionOrSubName is the name of the function or sub to be called, Argument(s) is the comma-delimited list of parameters.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[10],"class_list":["post-11","post","type-post","status-publish","format-standard","hentry","category-qtp-concepts","tag-call-statement"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Difference between Call Statement and normal Function Call in QTP - XX<\/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.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anish Pillai\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/\",\"name\":\"Difference between Call Statement and normal Function Call in QTP - XX\",\"isPartOf\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com\",\"datePublished\":\"2011-09-04T12:20:00+00:00\",\"dateModified\":\"2011-10-08T18:53:49+00:00\",\"author\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/9fb56e00b93c7e939604cdfb05d62078\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#primaryimage\",\"url\":\"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com\",\"contentUrl\":\"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.automationrepository.com\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Difference between Call Statement and normal Function Call in QTP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#website\",\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/\",\"name\":\"XX\",\"description\":\"\\r\\nasas\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.automationrepository.com\/wordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/9fb56e00b93c7e939604cdfb05d62078\",\"name\":\"Anish Pillai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Anish Pillai\"},\"url\":\"https:\/\/www.automationrepository.com\/wordpress\/author\/anish-pillai\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Difference between Call Statement and normal Function Call in QTP - XX","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.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/","twitter_misc":{"Written by":"Anish Pillai","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/","url":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/","name":"Difference between Call Statement and normal Function Call in QTP - XX","isPartOf":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#primaryimage"},"image":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#primaryimage"},"thumbnailUrl":"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com","datePublished":"2011-09-04T12:20:00+00:00","dateModified":"2011-10-08T18:53:49+00:00","author":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/9fb56e00b93c7e939604cdfb05d62078"},"breadcrumb":{"@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#primaryimage","url":"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com","contentUrl":"https:\/\/blogger.googleusercontent.com\/tracker\/413641991742395715-8017261255714094350?l=www.automationrepository.com"},{"@type":"BreadcrumbList","@id":"https:\/\/www.automationrepository.com\/wordpress\/2011\/09\/difference-between-call-statement-and-normal-function-call-in-qtp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.automationrepository.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Difference between Call Statement and normal Function Call in QTP"}]},{"@type":"WebSite","@id":"https:\/\/www.automationrepository.com\/wordpress\/#website","url":"https:\/\/www.automationrepository.com\/wordpress\/","name":"XX","description":"\r\nasas","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.automationrepository.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/9fb56e00b93c7e939604cdfb05d62078","name":"Anish Pillai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.automationrepository.com\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Anish Pillai"},"url":"https:\/\/www.automationrepository.com\/wordpress\/author\/anish-pillai\/"}]}},"_links":{"self":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/11","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/comments?post=11"}],"version-history":[{"count":10,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/11\/revisions"}],"predecessor-version":[{"id":520,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/posts\/11\/revisions\/520"}],"wp:attachment":[{"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/media?parent=11"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/categories?post=11"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.automationrepository.com\/wordpress\/wp-json\/wp\/v2\/tags?post=11"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}