Skip to main content

Download restored files shared by email

Downloads one or more restored files, bundled into a ZIP file, that another user shared with you by email.

Request Body
  • email_link string required

    The download link that was sent to you by email. To get the download link, open the email message, click "Download File" to launch the Clumio "Access Requested File" page, and copy the URL.

  • passcode string required

    The passcode used to access the restored file. Obtain the passcode from the user who generated the restored file.

Responses

Success


Schema
  • _links object

    URLs to pages related to the resource.

  • _self object

    The HATEOAS link to this resource.

  • href string

    The URI for the referenced operation.

  • templated boolean

    Determines whether the "href" link is a URI template. If set to true, the "href" link is a URI template.

  • type string

    The HTTP method to be used with the "href" link for the referenced operation.

  • download_url string

    A download link that lets you directly download the file. The link expires 24 hours after file restore.

POST /restores/files/_download    

Request

Click Edit to configure Base URL
https://us-west-2.api.clumio.com
Body
{
"email_link": "string",
"passcode": "string"
}
curl -L -X POST 'https://us-west-2.api.clumio.com/restores/files/_download' \
-H 'Content-Type: application/json' \
-H 'Accept: application/api.clumio.restored-files=v1+json' \
--data-raw '{
"email_link": "string",
"passcode": "string"
}'