Skip to main content
Files

Download File

Returns a temporary download URL for File content.

Path

GET /api/v1/forward/files/{file_id}/content

Request headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT or SAT>

Path parameters

ParameterTypeRequiredDescription
file_idstringYesFile ID to download.

Example request

curl -X GET "https://api.qoder.com/api/v1/forward/files/file_xxx/content" \
  -H "Authorization: Bearer $QODER_ACCESS_TOKEN"

Example response

{
  "url": "https://example.com/signed-url",
  "expires_at": "2026-07-23T12:00:00Z"
}

Empty-list response

Not applicable; this endpoint does not return a list.

Response fields

FieldTypeDescription
urlstringTemporary download URL.
expires_atstringDownload URL expiration time.

Errors

HTTPTypeTrigger
401authentication_errorThe authentication token is missing or invalid.
403permission_errorThe caller cannot access this resource.
404not_found_errorThe resource does not exist or is not visible.
500/502/503api_errorForward or a dependent service failed.