Skip to main content
GET
/
servers
/
{id}
/
files
/
pull
List active downloads
curl --request GET \
  --url https://your-domain.com/api/client/v1/servers/{id}/files/pull \
  --header 'Authorization: Bearer <token>'
{
  "downloads": [
    {
      "identifier": "<string>",
      "url": "<string>",
      "progress": 123,
      "size": 123,
      "error": "<string>"
    }
  ],
  "count": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Server UUID.

Response

Downloads

downloads
object[]
count
integer