{"id":10228,"date":"2019-04-08T17:39:30","date_gmt":"2019-04-08T17:39:30","guid":{"rendered":"https:\/\/evolphin.com\/help\/?p=10228"},"modified":"2020-05-18T06:53:57","modified_gmt":"2020-05-18T10:53:57","slug":"zoom-ingest-api","status":"publish","type":"post","link":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/","title":{"rendered":"Zoom Ingest API"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">API Request<\/h3>\n\n\n\n<p><strong><span style=\"color: #ff6600;\">POST<\/span><\/strong> \/<span style=\"font-weight: 400;\">review\/api\/asset\/upload<\/span><\/p>\n\n\n\n<p><strong>HEADERS:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Content-Type<\/strong><\/td><td>multipart\/form-data<\/td><\/tr><tr><td><strong>Cookie<\/strong><\/td><td>Zoom Authenticated Cookie<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>BODY: <\/strong><span style=\"color: #ff6600;\">formData<\/span><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th scope=\"row\"><strong>Key<\/strong><\/th><th scope=\"row\"><strong>Description<\/strong><\/th><th scope=\"row\"><strong>Required<\/strong><\/th><th scope=\"row\"><strong>Default<\/strong><\/th><\/tr><tr><td>file<\/td><td>File data. Use actual file data to upload in multipart form submit.<\/td><td>Yes<\/td><td>&#8211;<\/td><\/tr><tr><td>name<\/td><td>Name of the file. Uploaded <strong>file<\/strong> name will be used if not given.<\/td><td>Optional<\/td><td>Name from <strong>file <\/strong>field<\/td><\/tr><tr><td>destination<\/td><td>The ingest destination folder on the Zoom server.<\/td><td>Yes<\/td><td>&#8211;<\/td><\/tr><tr><td>collectionId<\/td><td>If upload is specific to the collection and added files need to be assigned to that collection<\/td><td>Optional<\/td><td>0<\/td><\/tr><tr><td>destinationFuid<\/td><td>Destination folder&#8217;s asset id on Zoom server. Either <strong>destination<\/strong> or <strong>destinationFuid<\/strong> can be given. Field <strong>destination<\/strong> is used when both are given.&nbsp;<\/td><td>Optional | use <strong>destination<\/strong><\/td><td>0<\/td><\/tr><tr><td>wait<\/td><td>Possible values: true or false. If true, request waits for the ingest job to finish else returns the jobId in JSON response.<\/td><td>Optional<\/td><td>false<\/td><\/tr><tr><td>waitInMinutes<\/td><td>If wait is true, this much amount of time we want to wait before cancelling it.<\/td><td>Optional<\/td><td>60<\/td><\/tr><tr><td>expandZip<\/td><td>If true and given <strong>file<\/strong> is zip type, then expands the zip before ingesting.<\/td><td>Optional<\/td><td>true<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>API Response<\/strong><\/h3>\n\n\n\n<p><strong><span style=\"color: #ff6600;\">HTTP<\/span> 200 OK<\/strong><\/p>\n\n\n\n<p><strong>Response Syntax:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n&nbsp; \"<strong>data<\/strong>\": {\n&nbsp; &nbsp; \"<strong>bid<\/strong>\": Branch Id, #1\n&nbsp; &nbsp; &nbsp; \"<strong>fuids<\/strong>\": [&nbsp; &nbsp; &nbsp;\n&nbsp; &nbsp; &nbsp; &nbsp; Asset Ids&nbsp; &nbsp; &nbsp;#2\n&nbsp; &nbsp; &nbsp; ],\n&nbsp; &nbsp; \"<strong>rrn<\/strong>\": Repo Revision Number&nbsp; &nbsp; &nbsp;#3\n&nbsp; },\n\"<strong>success<\/strong>\": true,&nbsp; &nbsp; &nbsp; #4\n\"<strong>length<\/strong>\": 38904,&nbsp; &nbsp; &nbsp; #5\n\"<strong>error<\/strong>\": \"Error Message when success is false\"&nbsp; &nbsp; #6\n}<\/pre>\n\n\n\n<p><strong>#<\/strong>Notes<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>Branch Id<\/strong>(number) Default value is one. By default server adds all the files on HEAD branch with id=1.<\/li><li><strong>Asset Ids<\/strong>(Json number Array): Asset ids of added assets.<\/li><li><strong>Repo Revision Number<\/strong>(number): Unique repository revision number at which assets are added to Zoom server.<\/li><li><strong>success<\/strong>(boolean): True value signifies that operation is completed without any errors. If success is false, associated error is returned in error field of <strong>json<\/strong> response.&nbsp;<\/li><li><strong>length<\/strong>(number): Length of received file.<\/li><li><strong>error<\/strong>(string): This field is populated if any error occurred during the ingest and <strong>success<\/strong> value is set to <strong>false<\/strong>.<\/li><\/ol>\n\n\n\n<p><strong><span style=\"color: #ff6600;\">HTTP<\/span> 401<\/strong><\/p>\n\n\n\n<p>Authentication failed. Occurs when cookie is not valid.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Curl Command<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Syntax<\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>curl<\/strong> -X POST <span class=\"hljs-string\">\"http:\/\/preview-server:8873<strong>\/review\/api\/asset\/upload<\/strong>\"<\/span> \\\n  -H <strong>\"Cookie: &lt;Zoom Authenticated Cookie\" \\\n<\/strong>  -H<strong> <span class=\"hljs-string\">\"Content-Type: multipart\/form-data\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"file=@&lt;path to file&gt;\" \\\n<\/span><\/strong>  -F<strong> <span class=\"hljs-string\">\"name=Acme.png\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"destination=&lt;Zoom server destination&gt;\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"collectionId=0\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"destinationFuid=0\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"wait=false\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"waitInMinutes=60\" \\\n<\/span><\/strong>  -F <strong><span class=\"hljs-string\">\"expandZip=true\"<\/span><\/strong><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Example<\/h4>\n\n\n\n<p><code>curl -X POST \\<\/code><br><code>http:\/\/preview-server:8873\/review\/api\/asset\/upload \\<\/code><br><code>-H 'Content-Type: multipart\/form-data' \\<\/code><br><code>-H 'Cookie: b3ca73fb-c9db-4c26-a672-d1555c128b32' \\<\/code><br><code>-H 'cache-control: no-cache' \\<\/code><br><code>-H 'content-type: multipart\/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \\<\/code><br><code>-F file=@\/Users\/test\/Downloads\/sample.png \\<\/code><br><code>-F name=Acme.png \\<\/code><br><code>-F destination=\/defproj\/test \\<\/code><br><code>-F collectionId=0 \\<\/code><br><code>-F destinationFuid=0 \\<\/code><br><code>-F wait=true \\<\/code><br><code>-F waitInMinutes=60 \\<\/code><br><code>-F expandZip=true<\/code><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<p><strong>Success:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"data\": {\n    \"bid\": 1,\n    \"fuids\": [ 372 ],\n    \"rrn\": 242\n  },\n  \"success\": true,\n  \"length\": 38904\n}<\/pre>\n\n\n\n<p><strong>Error<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n  \"success\": false,\n  \"error: \"Permission denied. You don't have permission to add files on Zoom server\"\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>API Request POST \/review\/api\/asset\/upload HEADERS: Content-Type multipart\/form-data Cookie Zoom Authenticated Cookie BODY: formData Key Description Required Default file File data. Use actual file data to upload in multipart form submit. Yes &#8211; name Name of the file. Uploaded file name will be used if not given. Optional Name from file field destination The ingest destination [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","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":[30],"tags":[],"class_list":["post-10228","post","type-post","status-publish","format-standard","hentry","category-api"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Zoom Ingest API - 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\/api\/zoom-ingest-api\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Zoom Ingest API - Evolphin Documentation\" \/>\n<meta property=\"og:description\" content=\"API Request POST \/review\/api\/asset\/upload HEADERS: Content-Type multipart\/form-data Cookie Zoom Authenticated Cookie BODY: formData Key Description Required Default file File data. Use actual file data to upload in multipart form submit. Yes &#8211; name Name of the file. Uploaded file name will be used if not given. Optional Name from file field destination The ingest destination [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/\" \/>\n<meta property=\"og:site_name\" content=\"Evolphin Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-08T17:39:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-18T10:53:57+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\\\/api\\\/zoom-ingest-api\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/\"},\"author\":{\"name\":\"Rahul Bhargava\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\"},\"headline\":\"Zoom Ingest API\",\"datePublished\":\"2019-04-08T17:39:30+00:00\",\"dateModified\":\"2020-05-18T10:53:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/\"},\"wordCount\":297,\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"articleSection\":[\"API and Scripting\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/\",\"name\":\"Zoom Ingest API - Evolphin Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\"},\"datePublished\":\"2019-04-08T17:39:30+00:00\",\"dateModified\":\"2020-05-18T10:53:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/api\\\/zoom-ingest-api\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Zoom Ingest API\"}]},{\"@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":"Zoom Ingest API - 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\/api\/zoom-ingest-api\/","og_locale":"en_US","og_type":"article","og_title":"Zoom Ingest API - Evolphin Documentation","og_description":"API Request POST \/review\/api\/asset\/upload HEADERS: Content-Type multipart\/form-data Cookie Zoom Authenticated Cookie BODY: formData Key Description Required Default file File data. Use actual file data to upload in multipart form submit. Yes &#8211; name Name of the file. Uploaded file name will be used if not given. Optional Name from file field destination The ingest destination [&hellip;]","og_url":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/","og_site_name":"Evolphin Documentation","article_published_time":"2019-04-08T17:39:30+00:00","article_modified_time":"2020-05-18T10:53:57+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\/api\/zoom-ingest-api\/#article","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/"},"author":{"name":"Rahul Bhargava","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7"},"headline":"Zoom Ingest API","datePublished":"2019-04-08T17:39:30+00:00","dateModified":"2020-05-18T10:53:57+00:00","mainEntityOfPage":{"@id":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/"},"wordCount":297,"publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"articleSection":["API and Scripting"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/","url":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/","name":"Zoom Ingest API - Evolphin Documentation","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/#website"},"datePublished":"2019-04-08T17:39:30+00:00","dateModified":"2020-05-18T10:53:57+00:00","breadcrumb":{"@id":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/evolphin.com\/help\/api\/zoom-ingest-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/evolphin.com\/help\/"},{"@type":"ListItem","position":2,"name":"Zoom Ingest API"}]},{"@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\/10228","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=10228"}],"version-history":[{"count":1,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/10228\/revisions"}],"predecessor-version":[{"id":14691,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/10228\/revisions\/14691"}],"wp:attachment":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/media?parent=10228"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/categories?post=10228"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/tags?post=10228"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}