You are here: Home > API Reference > App Management > Download > Get download file size

Get download file size

Get download file size

HEAD
https://download-api.applivery.io/v1/download/{downloadTokenId}

Request

Send your API key in the request header authorization
Example: Authorization: Bearer <token>

downloadTokenId string
required
Match pattern: ^[a-fA-F0-9]{24}$

Responses

{
  "type": "object",
  "properties": {}
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4005
message string optional
Token Expired
{
    "status": false,
    "error": {
        "code": 4005,
        "message": "Token Expired"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}
Was this page helpful?