{"id":105799,"date":"2021-04-21T09:08:54","date_gmt":"2021-04-21T00:08:54","guid":{"rendered":"https:\/\/support.questetra.com\/?p=105799"},"modified":"2026-08-05T10:33:31","modified_gmt":"2026-08-05T01:33:31","slug":"google-drive-file-copy-2021","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2021\/","title":{"rendered":"Google Drive #File: Copy"},"content":{"rendered":" <div style=\"text-align: center; background: #FFFF66; margin: 1em; padding: 1em;\"> <h3><span class=\"material-icons\">warning<\/span> PAGE UPDATED<\/h3> <a href=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2026\/\">https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2026\/<\/a> <\/div> \n\n\n<p class=\"wp-block-paragraph\"><div class=\"su-box su-box-style-default\" id=\"\" style=\"border-color:#003e04;border-radius:0px;max-width:none\"><div class=\"su-box-title\" style=\"background-color:#267137;color:#ffffff;border-top-left-radius:0px;border-top-right-radius:0px\">Google Drive: File, Copy<\/div><div class=\"su-box-content su-u-clearfix su-u-trim\" style=\"border-bottom-left-radius:0px;border-bottom-right-radius:0px\"> Creates a copy of a file and saves it in Google Drive. You can save it with any name you like. Note that the name of the file does not necessarily have to be unique within the folder.<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1\" data-anchor=\"configs\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Configs<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n<ul class=\"fa-ul\">\n<li>U: Select HTTP_Authz Setting<span style=\"color:#990000;\"> *<\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> A1: Set FILE-ID of Original<span style=\"color:#990000;\"> *<\/span><span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> B1: Set FOLDER-ID of Drive which contains New File<span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> B2: Set FILE NAME if you want to save as a different name<span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li> C1: Select STRING that stores New File Name (update)<\/li>\n<li> C2: Select STRING that stores New File ID (update)<\/li>\n<li> C3: Select STRING that stores URL for Editing (update)<\/li>\n<li> C4: Select STRING that stores URL for Viewing (update)<\/li>\n<li> C5: Select STRING that stores MimeType of New File (update)<\/li>\n<\/ul>\n<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1 su-spoiler-closed\" data-anchor=\"script\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Script (click to open)<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>\/\/ GraalJS Script (engine type: 2)\n\n\/\/\/\/\/\/\/\/ START &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\nmain();\nfunction main(){ \n\n\/\/\/\/ == Config Retrieving \/ \u5de5\u7a0b\u30b3\u30f3\u30d5\u30a3\u30b0\u306e\u53c2\u7167 ==\nconst strAuthzSetting     = configs.get      ( &quot;AuthzConfU&quot; );   \/\/\/ REQUIRED\n  engine.log( &quot; AutomatedTask Config: Authz Setting: &quot; + strAuthzSetting );\nconst strInputfileId      = configs.get      ( &quot;StrConfA1&quot; );    \/\/\/ REQUIRED\n  if( strInputfileId    === &quot;&quot; ){\n    throw new Error( &quot;\\n AutomatedTask ConfigError:&quot; +\n                     &quot; Config {A1: FileID} is empty \\n&quot; );\n  }\nconst strOutputfolderId   = configs.get      ( &quot;StrConfB1&quot; );    \/\/ NotRequired\n  if( strOutputfolderId === &quot;&quot; ){\n    engine.log( &quot; AutomatedTask ConfigWarning:&quot; +\n                &quot; Config {B1: FolderId} is empty&quot; );\n  }\nlet   strOutputfileSaveas = configs.get      ( &quot;StrConfB2&quot; );    \/\/ NotRequired\n\nconst strPocketOutputfileName = configs.getObject( &quot;SelectConfC1&quot; ); \/\/ NotRequired\nconst strPocketOutputfileId   = configs.getObject( &quot;SelectConfC2&quot; ); \/\/ NotRequired\nconst strPocketOutputfileEdit = configs.getObject( &quot;SelectConfC3&quot; ); \/\/ NotRequired\nconst strPocketOutputfileView = configs.getObject( &quot;SelectConfC4&quot; ); \/\/ NotRequired\nconst strPocketOutputfileMime = configs.getObject( &quot;SelectConfC5&quot; ); \/\/ NotRequired\n\n\/\/\/\/ == Data Retrieving \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u306e\u53c2\u7167 ==\n\/\/ (Nothing. Retrieved via Expression Language in Config Retrieving)\n\n\n\/\/\/\/ == Calculating \/ \u6f14\u7b97 ==\n\/\/\/ Google Workspace for Developers &gt; Google Drive for Developers &gt; v3\n\/\/\/ https:\/\/developers.google.com\/drive\/api\/v3\/reference\/files\/copy\n\/\/ request1, prepare\nlet request1Obj = {};\n    if( strOutputfolderId !== &quot;&quot; ){\n      request1Obj.parents     = [];\n      request1Obj.parents[0]  = strOutputfolderId;\n    }\n    if( strOutputfileSaveas !== &quot;&quot; ){\n      request1Obj.name        = strOutputfileSaveas;\n    }\nlet request1Uri = &quot;https:\/\/www.googleapis.com\/drive\/v3\/files\/&quot; +\n                  strInputfileId + &quot;\/copy&quot;;\nlet request1    = httpClient.begin(); \/\/ HttpRequestWrapper\n    request1    = request1.authSetting( strAuthzSetting ); \/\/ with &quot;Authorization: Bearer XX&quot;\n    \/\/ https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#HttpRequestWrapper\n    request1    = request1.queryParam( &quot;supportsAllDrives&quot;, &quot;true&quot; );\n    request1    = request1.body( JSON.stringify( request1Obj ), &quot;application\/json&quot; );\n\n\/\/ request1, try\nconst response1     = request1.post( request1Uri ); \/\/ HttpResponseWrapper\nengine.log( &quot; AutomatedTask ApiRequest1 Start: &quot; + request1Uri );\nconst response1Code = response1.getStatusCode() + &quot;&quot;;\nconst response1Body = response1.getResponseAsString() + &quot;&quot;;\nengine.log( &quot; AutomatedTask ApiResponse Status: &quot; + response1Code );\nif( response1Code !== &quot;200&quot;){\n  throw new Error( &quot;\\n AutomatedTask UnexpectedResponseError: &quot; +\n                    response1Code + &quot;\\n&quot; + response1Body + &quot;\\n&quot; );\n}\n\n\/\/ response1, parse\n\/* engine.log( response1Body ); \/\/ debug\n{\n  &quot;kind&quot;: &quot;drive#file&quot;,\n  &quot;id&quot;: &quot;1x9rZrt-Iyj2QBewzeLF1P7fG-plXaKMyCnJSFAT-d1g&quot;,\n  &quot;name&quot;: &quot;Questetra-Intro-en&quot;,\n  &quot;mimeType&quot;: &quot;application\/vnd.google-apps.document&quot;\n}\n*\/\nconst response1Obj = JSON.parse( response1Body );\nengine.log( &quot; AutomatedTask ApiResponse: NewFile ID: &quot; + response1Obj.id );\nengine.log( &quot; AutomatedTask ApiResponse: MIME Type: &quot; +  response1Obj.mimeType );\n\n\n\/\/\/\/ == Data Updating \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u3078\u306e\u4ee3\u5165 ==\nif( strPocketOutputfileName !== null ){\n  engine.setData( strPocketOutputfileName, response1Obj.name );\n}\nif( strPocketOutputfileId   !== null ){\n  engine.setData( strPocketOutputfileId,   response1Obj.id );\n}\nif( strPocketOutputfileEdit !== null ){\n  engine.setData( strPocketOutputfileEdit, &quot;https:\/\/docs.google.com\/open?id=&quot; +\n                                            response1Obj.id );\n}\nif( strPocketOutputfileView !== null ){\n  engine.setData( strPocketOutputfileView, &quot;https:\/\/drive.google.com\/file\/d\/&quot; +\n                                            response1Obj.id + &quot;\/view&quot; );\n}\nif( strPocketOutputfileMime !== null ){\n  engine.setData( strPocketOutputfileMime, response1Obj.mimeType );\n}\n\n\n} \/\/\/\/\/\/\/\/ END &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\n\n\/*\nNotes:\n- It is used when creating a document by duplicating the template. (Invoices, Proposals, etc.)\n- Refer to the file ID of the image from the URL in &quot;Open in new window&quot;\n- If Folder-ID not specified, the file will inherit any discoverable parents of the source file.\n- This automated task (Addon) does not support to duplicate to &quot;My Drive&quot;.\nNotes-ja:\n- \u3072\u306a\u578b\u30d5\u30a1\u30a4\u30eb\u3092\u8907\u88fd\u3057\u3066\u500b\u5225\u6587\u66f8\u3092\u4f5c\u6210\u3059\u308b\u969b\u7b49\u306b\u5229\u7528\u3057\u307e\u3059\u3002\uff08\u8acb\u6c42\u66f8\u3001\u898b\u7a4d\u66f8\u3001\u63d0\u6848\u66f8\u306a\u3069\uff09\n- \u753b\u50cf\u30d5\u30a1\u30a4\u30eb\u306eID\u306f\u300c\u65b0\u3057\u3044\u30a6\u30a3\u30f3\u30c9\u30a6\u3067\u958b\u304f\u300d\u306eURL\u3092\u53c2\u7167\u3057\u307e\u3059\u3002\n- \u4fdd\u5b58\u30d5\u30a9\u30eb\u30c0\u304c\u7121\u6307\u5b9a\u306e\u5834\u5408\u3001\u5143\u30d5\u30a1\u30a4\u30eb\u306e\u6240\u5c5e\u30d5\u30a9\u30eb\u30c0\u60c5\u5831\u304c\u7d99\u627f\u3055\u308c\u307e\u3059\u3002\n- \u3053\u306e\u81ea\u52d5\u5de5\u7a0b\uff08\u30a2\u30c9\u30aa\u30f3\uff09\u3067\u306f\u3001&quot;\u30de\u30a4\u30c9\u30e9\u30a4\u30d6&quot; \u3078\u306e\u8907\u88fd\u4fdd\u5b58\u306f\u3067\u304d\u307e\u305b\u3093\u3002\n\nAPPENDIX-en\n- Folders cannot be copied or converted.\n- Setting example of &quot;HTTP Authentication&quot; (OAuth2)\n    - Authorization Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&approval_prompt=force\n    - Token Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/token\n    - Scope:\n        - https:\/\/www.googleapis.com\/auth\/drive\n    - Client ID, Consumer Secret:\n        - ( from https:\/\/console.developers.google.com\/ )\n        - Redirect URLs: https:\/\/s.questetra.net\/oauth2callback\nAPPENDIX-ja\n- \u30d5\u30a9\u30eb\u30c0\u306f\u30b3\u30d4\u30fc\uff08\u5909\u63db\uff09\u3067\u304d\u307e\u305b\u3093\n- &quot;HTTP\u8a8d\u8a3c&quot;\uff08OAuth2\uff09\u306e\u8a2d\u5b9a\u4f8b\n    - Authorization Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&approval_prompt=force\n    - Token Endpoint URL:\n        - https:\/\/accounts.google.com\/o\/oauth2\/token\n    - Scope:\n        - https:\/\/www.googleapis.com\/auth\/drive\n    - Client ID, Consumer Secret:\n        - ( from https:\/\/console.developers.google.com\/ )\n        - Redirect URLs: https:\/\/s.questetra.net\/oauth2callback\n*\/\n\n<\/code><\/pre><\/div>\n\n\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image alignright\"><a href=\"#\"><img decoding=\"async\" src=\"data:image;base64,\niVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAEB0lEQVRYR8VXXWgcVRT+zszuzM6Y\ntgltUFRagxTaiDS1IKKUjX1IFyrWUi0iVJOHvgjSFAVnEbX+4KaIZIv4JGKkhRaC2JSW7uahbqmI\nfSimSCVUsK1oWv\/IxpTM\/s6RO8lmN\/O3s43U+zLL3vPznXO\/c869hP95USv++w4VnyGuxgnUw+B2\n8RX6DJ4gUF58ATmXNdSxsHabAugd5vZYqbCfmQcJ1B7GMIPzRJQuKLHDuQOUD9IJBJBImf1MPBzW\nsdORAMIkD4y\/rp7wA+ELYPvQXJpA+8NE3EyGwemsoR\/wkvMEkEiZIyC81Mxwi\/sjGUMbcOq4APyX\nkXscyeGsoQ82\/r8EgDhzED4PiuzZRyOId8uQHdDLVeD09xWM\/1ANTIxF0q5GTiyaEWxXi+bVIMLF\nN8p4cWsEmkLouMvt58pNhnGsCLPkj0EQs6hqXbXqWASQSJkHQXg7CH7qeQU96yTcyDPWrCBE5aXS\nIguj31Vw5JtKMD0Y72SS2kEhtAhg+9BcnkCr\/DT3PBbBC09EoEaAQhmYNRmdK90cvjnDOHSyhMkp\n9gUhspA19I5FAKLDSWx95adxXwfhjV0KujrrDv+aBXQV0JWlWhYDZy9X8dHpcigu2BabMX\/ftgie\n3hJBRKrbrFjAn\/8w7hEN2eEqPwd8nCnh25+soCzYFWHrJlJmDoS4l\/SmtRJee0rBmhXu3ckpC50r\nJaxuc+9NXLeQPB7IxnOZpNZbA3ANhHVeAJI7o9i6QXZFOVsAPhkv46H7JezYLENypEHwZORcGWMX\nvctSDK6soW+eBzBkejKm72EZ+7ZF0RZzn3Puxyo+PFXG2tWEt3YrEDxxrp\/\/YHxwooTfpr0JmTE0\n8gWgKcB7zyl2hM7lZHpjhTTKCp6cvFjBp2e9y7IOIGW6jqAVo62ArQFk8KWsoff4knB4r4IN97qj\nn5pm3CrA1YRkCVCjwHxO66tqAWcmqhi94MgCo05CrzLcuUVGfzyKWLRuLKgB+dWbOP93vyzhl7+X\n8oDB9TL0a0Tv71HwSJdkV4BQvzE93\/2cLdjPeakCO\/KjHq25NpQCW\/Hj6yW8klDQrsNOuyCV+B12\nXf7VwpujJddwYvBM1tDt613TYfTqjiie7Jbx+8x813PWux+YW0Xgs6\/LyFzy6ANew2hhHF9zDiRR\n5y\/3RfHg3RLa1HCxi+M6P1lFasw9D0T0RVV7wDWOF1py0wtJOAj+Ur4XkppKs8G0LAANqa\/ZuXOX\nUsYXmaTW7wzgjlzL4RF5YAZqmwtPsZGgm1LQkQjCMcn9t\/UwqRm2n2aFwiCT\/TTzvbI1AhGOiSld\niMXSy3qaOaNbyEgvMfUw2Y\/TTUJGDBZiyjPxBJOcC4o4NAeWxfYWlP8FgpLGMJo42BUAAAAASUVO\nRK5CYII=\n\" alt=\"\"\/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-cloud-download-alt\"><\/i> Download<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a rel=\"noreferrer noopener\" href=\"https:\/\/drive.google.com\/file\/d\/1TVeLpl6CZYPIPfRtnVo1pI-3grA2pPzi\/view?usp=drivesdk\" target=\"_blank\">Google-Drive-File-Copy-2021.xml<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/drive.google.com\/file\/d\/1SA0ZbuGmeZD0wLMs2cESblp_ASGHLozY\/view?usp=sharing\" data-type=\"link\" data-id=\"https:\/\/drive.google.com\/file\/d\/1SA0ZbuGmeZD0wLMs2cESblp_ASGHLozY\/view?usp=sharing\">Google-Drive-File-Copy-2023.xml<\/a>\n<ul class=\"wp-block-list\">\n<li>2023-08-15 (C) Questetra, Inc. (MIT License)<\/li>\n\n\n\n<li>for &#8220;GraalJS standard (engine-type 3)&#8221; on v15.0 or above<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"has-text-align-right has-small-font-size wp-block-paragraph\">2021-04-19 (C) Questetra, Inc. (MIT License)<br><a href=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2021\/\">https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2021\/<\/a><br><i class=\"fal fa-info-circle\"><\/i> The Addon-import feature is available with <span style=\"color:#4a86e8\" class=\"has-inline-color\"><strong>Professional<\/strong><\/span> edition.<\/p>\n\n\n<div class=\"su-divider su-divider-style-dashed\" style=\"margin:30px 0;border-width:8px;border-color:#009900\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-lightbulb-exclamation\"><\/i> Notes<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It is used when creating a document by duplicating the template file. (Invoices, Proposals, etc.)<\/li>\n\n\n\n<li>The file ID of the image refers to the URL in &#8220;Open in new window&#8221;<\/li>\n\n\n\n<li>If the folder ID is not specified the folder information of the original file is inherited<\/li>\n\n\n\n<li>This automated task (Addon) does not support duplication and saving on My Drive.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-images\"><\/i> Capture<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?ssl=1\" target=\"_blank\" rel=\"noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"675\" data-attachment-id=\"105802\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2021\/attachment\/google-drive-file-copy-2021-execution-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?fit=1200%2C675&amp;ssl=1\" data-orig-size=\"1200,675\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Google-Drive-File-Copy-2021-execution-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?fit=1024%2C576&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?resize=1200%2C675&#038;ssl=1\" alt=\"Creates a copy of a file in Google Drive. It supports saving as an arbitrary name. Note that the name of the file is not necessarily unique within a folder.\" class=\"wp-image-105802\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?w=1200&amp;ssl=1 1200w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?resize=560%2C315&amp;ssl=1 560w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?resize=1024%2C576&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-execution-en.png?resize=768%2C432&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default q-box\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?ssl=1\" target=\"_blank\" rel=\"noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"634\" height=\"630\" data-attachment-id=\"105805\" data-permalink=\"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2021\/attachment\/google-drive-file-copy-2021-config-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?fit=1163%2C1155&amp;ssl=1\" data-orig-size=\"1163,1155\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Google-Drive-File-Copy-2021-config-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?fit=634%2C630&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en-634x630.png?resize=634%2C630&#038;ssl=1\" alt=\"Creates a copy of a file in Google Drive. It supports saving as an arbitrary name. Note that the name of the file is not necessarily unique within a folder.\" class=\"wp-image-105805\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?resize=634%2C630&amp;ssl=1 634w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?resize=317%2C315&amp;ssl=1 317w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?resize=768%2C763&amp;ssl=1 768w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-config-en.png?w=1163&amp;ssl=1 1163w\" sizes=\"auto, (max-width: 634px) 100vw, 634px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-book\"><\/i> Appendix<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Folders cannot be copied or converted<\/li>\n\n\n\n<li>Settings example of HTTP Authentication (OAuth2)\n<ul class=\"wp-block-list\">\n<li>Authorization Endpoint URL:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&#038;approval_prompt=force\" rel=\"nofollow\">https:\/\/accounts.google.com\/o\/oauth2\/auth?access_type=offline&#038;approval_prompt=force<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Token Endpoint URL:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/accounts.google.com\/o\/oauth2\/token\" rel=\"nofollow\">https:\/\/accounts.google.com\/o\/oauth2\/token<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Scope:\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.googleapis.com\/auth\/drive\" rel=\"nofollow\">https:\/\/www.googleapis.com\/auth\/drive<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Client ID, Consumer Secret:\n<ul class=\"wp-block-list\">\n<li>( from <a href=\"https:\/\/console.developers.google.com\/\" rel=\"nofollow\">https:\/\/console.developers.google.com\/<\/a> )<\/li>\n\n\n\n<li>Redirect URLs: <a href=\"https:\/\/s.questetra.net\/oauth2callback\" rel=\"nofollow\">https:\/\/s.questetra.net\/oauth2callback<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-balance-scale\"><\/i> See also<\/h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-questetra-support wp-block-embed-questetra-support\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"7MeieEUt8R\"><a href=\"https:\/\/support.questetra.com\/en\/addons\/google-docs-document-replace-all-2021\/\">Google Docs #Document: Replace All<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"\u201cGoogle Docs #Document: Replace All\u201d \u2014 Questetra Support\" src=\"https:\/\/support.questetra.com\/en\/addons\/google-docs-document-replace-all-2021\/embed\/#?secret=HauXluB6Dt#?secret=7MeieEUt8R\" data-secret=\"7MeieEUt8R\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Creates a copy of a file and saves it in Google Drive. You can save it with any name you like. Note that the name of the file does not necessarily have to be unique within the folder.<\/p>\n","protected":false},"author":2,"featured_media":105800,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","_uag_custom_page_level_css":"","advanced_seo_description":"Creates a copy of a file in Google Drive. It supports saving as an arbitrary name. Note that the name of the file is not necessarily unique within a folder.","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_seo_schema_type":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[168],"tags":[3167,398,3162],"faq_section":[],"class_list":["post-105799","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-addons","tag-authsetting","tag-google-drive-api-v3","tag-google-workspace"],"jetpack_publicize_connections":[],"uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-portrait-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=900%2C675&ssl=1",900,675,true],"newspack-article-block-square-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=800%2C600&ssl=1",800,600,true],"newspack-article-block-portrait-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=600%2C675&ssl=1",600,675,true],"newspack-article-block-square-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=800%2C675&ssl=1",800,675,true],"newspack-article-block-landscape-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=600%2C450&ssl=1",600,450,true],"newspack-article-block-portrait-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=450%2C600&ssl=1",450,600,true],"newspack-article-block-square-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=600%2C600&ssl=1",600,600,true],"newspack-article-block-landscape-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=400%2C300&ssl=1",400,300,true],"newspack-article-block-portrait-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=300%2C400&ssl=1",300,400,true],"newspack-article-block-square-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=400%2C400&ssl=1",400,400,true],"newspack-article-block-landscape-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=200%2C150&ssl=1",200,150,true],"newspack-article-block-portrait-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=150%2C200&ssl=1",150,200,true],"newspack-article-block-square-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1",1200,675,true]},"uagb_author_info":{"display_name":"IMAMURA, Genichi","author_link":"https:\/\/support.questetra.com\/en\/author\/imamuragenichi\/"},"uagb_comment_info":3,"uagb_excerpt":"Creates a copy of a file and saves it in Google Drive. You can save it with any name you like. Note that the name of the file does not necessarily have to be unique within the folder.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-rwr","jetpack-related-posts":[{"id":192315,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy-2026\/","url_meta":{"origin":105799,"position":0},"title":"Google Drive #File: Copy","author":"Hirotaka NISHI","date":"2026-08-05","format":false,"excerpt":"Creates a copy of a file and saves it in Google Drive. You can save it with any name you like. Note that the name of the file does not necessarily have to be unique within the folder.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"Google Drive: File, Copy","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":74763,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/google-drive-items\/","url_meta":{"origin":105799,"position":1},"title":"Utilizing Google Drive from Workflow &#8211; Sending files to people outside the company","author":"Hirotaka NISHI","date":"2020-10-30","format":false,"excerpt":"Google Drive is a cloud storage service offered by Google. I will explain automatic Step for utilizing Google Drive in a Workflow App.","rel":"","context":"In \"Google Drive API v3\"","block_context":{"text":"Google Drive API v3","link":"https:\/\/support.questetra.com\/en\/tag\/google-drive-api-v3\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/10\/google-drive-questetra.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/10\/google-drive-questetra.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/10\/google-drive-questetra.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/10\/google-drive-questetra.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/10\/google-drive-questetra.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":67279,"url":"https:\/\/support.questetra.com\/en\/addons\/googledrive-filescopy\/","url_meta":{"origin":105799,"position":2},"title":"Google Drive Files Copy","author":"Hirotaka NISHI","date":"2017-11-26","format":false,"excerpt":"Copies a file on Google Drive and save it to the specified directory. Preparing a file to be a template and it will be a copy automatically at the Start of a new Issue. *Note You need to register Project at Google API Manager beforehand If there is no specified\u2026","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/11\/google-drive-file-copy-header.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/11\/google-drive-file-copy-header.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/11\/google-drive-file-copy-header.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/11\/google-drive-file-copy-header.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2017\/11\/google-drive-file-copy-header.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":82966,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-convert\/","url_meta":{"origin":105799,"position":3},"title":"Google Drive: File, Convert","author":"IMAMURA, Genichi","date":"2019-12-25","format":false,"excerpt":"Converts file in Google Drive and save as another MimeType file. Supports both Google Doc files and common files. File ID can be obtained from URI etc. (If Folder-ID not specified, the file will inherit any discoverable parents of the source file.)","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"Google Drive: File, Convert","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":79643,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-copy\/","url_meta":{"origin":105799,"position":4},"title":"Google Drive: Copy File","author":"HatanakaAkihiro","date":"2020-01-14","format":false,"excerpt":"Creates a copy of a file into the Folder","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Copy-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Copy-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Copy-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Copy-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/09\/Google-Drive-File-Copy-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":77425,"url":"https:\/\/support.questetra.com\/en\/bpmn-icons\/box-folder-create\/","url_meta":{"origin":105799,"position":5},"title":"Box: Create Folder","author":"Shiho Tatsumi","date":"2024-02-20","format":false,"excerpt":"This item creates a new folder in the specified folder on Box, and saves the folder ID and URL. When there is a folder with the same name, this item saves that folder ID and URL.","rel":"","context":"In &quot;BPMN Icons&quot;","block_context":{"text":"BPMN Icons","link":"https:\/\/support.questetra.com\/en\/category\/bpmn-icons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/bpmn-icon-service-task-box.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/bpmn-icon-service-task-box.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/bpmn-icon-service-task-box.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/bpmn-icon-service-task-box.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/02\/bpmn-icon-service-task-box.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/04\/Google-Drive-File-Copy-2021-en.png?fit=1200%2C675&ssl=1","_links":{"self":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/105799","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/comments?post=105799"}],"version-history":[{"count":8,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/105799\/revisions"}],"predecessor-version":[{"id":192325,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/105799\/revisions\/192325"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/105800"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=105799"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=105799"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=105799"},{"taxonomy":"faq_section","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/faq_section?post=105799"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}