APIFile management

Generate file download URL

Generates a signed URL for downloading a file that expires in 15 minutes

Generates a signed URL for downloading a file that expires in 15 minutes

GET
/api/client/servers/{server}/files/download

Authorization

bearerAuth
AuthorizationBearer <token>

Enter your API token in the format: Bearer {token}

In: header

Path Parameters

server*string

Server UUID

Query Parameters

file*string

Path to the file to download

Response Body

application/json

curl -X GET "https://example.com/api/client/servers/string/files/download?file=string"
{
  "object": "signed_url",
  "attributes": {
    "url": "string"
  }
}
Empty
Empty
Empty
Empty