Skip to main content

downloadFile

GET 

https://host/v1/environment/:environment/files/:uri/download

Get a signed url to download a File in an Environment by its url-encoded URI.

Request

Path Parameters

    environment stringrequired
    uri stringrequired

Responses

Signed Url

Schema
    stringstring

Authorization: Authorization

name: Authorizationtype: httpscheme: bearerbearerFormat: JWTdescription: Enter JWT tokenin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://host/v1/environment/:environment/files/:uri/download");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://host
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!