{"id":4685,"date":"2016-07-07T08:20:05","date_gmt":"2016-07-07T08:20:05","guid":{"rendered":"http:\/\/evolphin.com\/help\/?p=4685"},"modified":"2020-05-18T09:09:06","modified_gmt":"2020-05-18T13:09:06","slug":"perl-sdk-module-zoomvantage","status":"publish","type":"post","link":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/","title":{"rendered":"Perl SDK Module: ZoomVantage"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Name<\/h3>\n\n\n\n<p>ZoomVantage &#8211; Helper methods to interact with Vantage<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Dependencies<\/h3>\n\n\n\n<p>Ensure the <a href=\"\/docs\/v5\/api-5-x\/perl-sdk\/perl-sdk\/\">Perl SDK<\/a> is setup.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Synopsis<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\">use ZoomVantage;\nmy $jobId = ZoomVantage::submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href); <\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Methods<\/h3>\n\n\n\n<h2 class=\"wp-block-heading\">getVantageWorkflowId<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: getVantageWorkflowId($workflowName)<\/h4>\n\n\n\n<p>Given a valid vantage workflow name, returns the corresponding workflow id<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $workflowId = ZoomVantage::getVantageWorkflowId('Hires Ingest');<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">submitFileToVantage<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href)<\/h4>\n\n\n\n<p>Submits the input file to Vantage for processing. On successful submission returns the job id, otherwise undef<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $jobId = ZoomVantage::submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href);\nWhere,\n$wfid - Vantage Workflow id\n$in - Input file path\n$jobName - Job Name which will be displayed in Vantage job monitoring\n$outpathkey - Variable name used by Vantage to determine the output file path\n$params_href - Hashmap reference to a table of variables with key matching Vantage variable name<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">getJobState<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: getJobState($jobId)<\/h4>\n\n\n\n<p>Given a vantage job id, returns the status of the job. Job status can be any of Active | Failed | StoppedByUser | Complete | WaitingToRetry | Waiting<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $jobId = ZoomVantage::submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href);\nmy $jobStatus = ZoomVantage::getJobState($jobId);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">getSessions<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: getSessions($jobId)<\/h4>\n\n\n\n<p>Given a job id, returns a map of all the sessions specific to the job and its session id. Use this subroutine to lookup session id by description<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $sessionDesc2Id_href = ZoomVantage::getSessions($jobId);\nif($sessionDesc2Id_href){\n  my $sessionId = $sessionDesc2Id_href-&gt;{'Zoom-deploy'};\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">getSessionVariables<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: getSessionVariables($sessionId)<\/h4>\n\n\n\n<p>Given a session id, returns a map of the session&#8217;s variables and its corresponding values. This includes the list of variables set while submitting file to vantage along with its values<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">getWorkflowVariableRequirements<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: getWorkflowVariableRequirements($workflowId)<\/h4>\n\n\n\n<p>Returns the variables required for the input workflow in the form of XML DOM that can be manipulated using XPath and DOM API<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my ($dom,$xc) = ZoomVantage::getWorkflowVariableRequirements($workflowId);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">setWorkflowVariables<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: setWorkflowVariables($workflowId, $params_href)<\/h4>\n\n\n\n<p>For a given workflow, sets vantage variables with its respective values required for processing a file. Used with getWorkflowVariableRequirements before submitting a file to Vantage<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $ctxDom = ZoomVantage::setWorkflowVariables($workflowId, $params_href);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">extractSingleValueFromXMLResponse<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: extractSingleValueFromXMLResponse($namespace, $xpath, $response)<\/h4>\n\n\n\n<p>Given a XML response and xpath as input, returns the first matching value. Used when the xpath is expected to return a single value<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">extractValueListFromXMLResponse<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: extractValueListFromXMLResponse($namespace, $xpath, $response)<\/h4>\n\n\n\n<p>Given a XML response and xpath as input, returns a list of matching values<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $sids_aref = ZoomVantage::extractValueListFromXMLResponse($namespace, $xpath, $response);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">pathForVantage<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: pathForVantage($inPath)<\/h4>\n\n\n\n<p>Translates the given path relative to vantage mount<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my $vantagePath = ZoomVantage::pathForVantage($inPath);<\/pre>\n\n\n\n<div class=\"note\">Below fields should be set in config.ini<br>[VANTAGE] <br>inPathPrefix = Prefix to $inPath<br>outPathMount = Prefix to Vantage Location<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">executeRestURL<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">Usage: executeRestURL($requestType, $url, \\%request_params)<\/h4>\n\n\n\n<p>Given a URI and its parameters, queries the vantage REST server and returns response in XML format. If required, use extractSingleValueFromXMLResponse and extractValueListFromXMLResponse to parse the response.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">my %params = (identifier =&gt; $jobId);<br>my ($rv, $response) = executeRestURL(\"GET\", \"\/JobRest\/GetSessionsForJob\",\\%params );<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Name ZoomVantage &#8211; Helper methods to interact with Vantage Dependencies Ensure the Perl SDK is setup. Synopsis use ZoomVantage; my $jobId = ZoomVantage::submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href); Methods getVantageWorkflowId Usage: getVantageWorkflowId($workflowName) Given a valid vantage workflow name, returns the corresponding workflow id my $workflowId = ZoomVantage::getVantageWorkflowId(&#8216;Hires Ingest&#8217;); submitFileToVantage Usage: submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href) Submits [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[140],"tags":[],"class_list":["post-4685","post","type-post","status-publish","format-standard","hentry","category-perl-sdk"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Perl SDK Module: ZoomVantage - Evolphin Documentation<\/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:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Perl SDK Module: ZoomVantage - Evolphin Documentation\" \/>\n<meta property=\"og:description\" content=\"Name ZoomVantage &#8211; Helper methods to interact with Vantage Dependencies Ensure the Perl SDK is setup. Synopsis use ZoomVantage; my $jobId = ZoomVantage::submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href); Methods getVantageWorkflowId Usage: getVantageWorkflowId($workflowName) Given a valid vantage workflow name, returns the corresponding workflow id my $workflowId = ZoomVantage::getVantageWorkflowId(&#039;Hires Ingest&#039;); submitFileToVantage Usage: submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href) Submits [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/\" \/>\n<meta property=\"og:site_name\" content=\"Evolphin Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-07T08:20:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-18T13:09:06+00:00\" \/>\n<meta name=\"author\" content=\"Rahul Bhargava\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rahul Bhargava\" \/>\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:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/\"},\"author\":{\"name\":\"Rahul Bhargava\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\"},\"headline\":\"Perl SDK Module: ZoomVantage\",\"datePublished\":\"2016-07-07T08:20:05+00:00\",\"dateModified\":\"2020-05-18T13:09:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/\"},\"wordCount\":329,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"articleSection\":[\"Perl SDK\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/\",\"name\":\"Perl SDK Module: ZoomVantage - Evolphin Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\"},\"datePublished\":\"2016-07-07T08:20:05+00:00\",\"dateModified\":\"2020-05-18T13:09:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/deployment\\\/perl-sdk\\\/perl-sdk-module-zoomvantage\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Perl SDK Module: ZoomVantage\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\",\"name\":\"Evolphin Documentation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/evolphin.com\\\/help\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\",\"name\":\"Evolphin Documentation\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-evolphin-logo-dolphin_sm.png\",\"contentUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-evolphin-logo-dolphin_sm.png\",\"width\":200,\"height\":200,\"caption\":\"Evolphin Documentation\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\",\"name\":\"Rahul Bhargava\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"caption\":\"Rahul Bhargava\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Perl SDK Module: ZoomVantage - Evolphin Documentation","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:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/","og_locale":"en_US","og_type":"article","og_title":"Perl SDK Module: ZoomVantage - Evolphin Documentation","og_description":"Name ZoomVantage &#8211; Helper methods to interact with Vantage Dependencies Ensure the Perl SDK is setup. Synopsis use ZoomVantage; my $jobId = ZoomVantage::submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href); Methods getVantageWorkflowId Usage: getVantageWorkflowId($workflowName) Given a valid vantage workflow name, returns the corresponding workflow id my $workflowId = ZoomVantage::getVantageWorkflowId('Hires Ingest'); submitFileToVantage Usage: submitFileToVantage($wfId, $in, $jobName, $outpathkey, $params_href) Submits [&hellip;]","og_url":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/","og_site_name":"Evolphin Documentation","article_published_time":"2016-07-07T08:20:05+00:00","article_modified_time":"2020-05-18T13:09:06+00:00","author":"Rahul Bhargava","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rahul Bhargava","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/#article","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/"},"author":{"name":"Rahul Bhargava","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7"},"headline":"Perl SDK Module: ZoomVantage","datePublished":"2016-07-07T08:20:05+00:00","dateModified":"2020-05-18T13:09:06+00:00","mainEntityOfPage":{"@id":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/"},"wordCount":329,"commentCount":0,"publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"articleSection":["Perl SDK"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/","url":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/","name":"Perl SDK Module: ZoomVantage - Evolphin Documentation","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/#website"},"datePublished":"2016-07-07T08:20:05+00:00","dateModified":"2020-05-18T13:09:06+00:00","breadcrumb":{"@id":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/evolphin.com\/help\/deployment\/perl-sdk\/perl-sdk-module-zoomvantage\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/evolphin.com\/help\/"},{"@type":"ListItem","position":2,"name":"Perl SDK Module: ZoomVantage"}]},{"@type":"WebSite","@id":"https:\/\/evolphin.com\/help\/#website","url":"https:\/\/evolphin.com\/help\/","name":"Evolphin Documentation","description":"","publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/evolphin.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/evolphin.com\/help\/#organization","name":"Evolphin Documentation","url":"https:\/\/evolphin.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evolphin.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2020\/04\/cropped-evolphin-logo-dolphin_sm.png","contentUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2020\/04\/cropped-evolphin-logo-dolphin_sm.png","width":200,"height":200,"caption":"Evolphin Documentation"},"image":{"@id":"https:\/\/evolphin.com\/help\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7","name":"Rahul Bhargava","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","caption":"Rahul Bhargava"}}]}},"_links":{"self":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/4685","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/comments?post=4685"}],"version-history":[{"count":1,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/4685\/revisions"}],"predecessor-version":[{"id":14788,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/4685\/revisions\/14788"}],"wp:attachment":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/media?parent=4685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/categories?post=4685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/tags?post=4685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}