Skip to main content

Pause a Download

PUT 

//localhost:58231/file-svc/download/:url/pause

Pause a download that is currently in progress.

Requires the file-svc:download:edit permission.

Request

Path Parameters

    url stringrequired

    Download URL

Responses

Success response

Schema
    property name*any

Authorization: Authorization

name: Authorizationtype: apiKeydescription: Type "Bearer" followed by a space and token acquired from the User Svc Login endpoint.in: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "//localhost:58231/file-svc/download/:url/pause");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "<Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
//localhost:58231
Auth
Parameters
— pathrequired
ResponseClear

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