v6 documentation is incomplete, want to contribute?

Check FileData Upload Status

Retrieves the upload status for file upload. Can currently only be accessed when status is waiting. Trying to access it on a file version already uploaded currently times out.

Requests made through this page are proxied through an intermediary server due to Cross-Origin Resource Sharing restrictions.

GET
/file/{fileId}/{versionId}/{fileType}/status
auth<token>

Auth Token via Cookie

In: cookie

Path Parameters

fileIdstring

Must be a valid file ID.

versionIdinteger

Version ID of the asset.

Range1 <= value
fileTypestring

Type of file.

Value in"file" | "signature" | "delta"

Response Body

application/json

curl -X GET "https://api.vrchat.cloud/api/1/file/file_00000000-0000-0000-0000-000000000000/1/file/status"

{
  "uploadId": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxx.xxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx..xxxxxxxxxxxxxxxxxxxxxxx",
  "fileName": "Avatar-MyAvatar-Un.file_00000000-0000-0000-0000-000000000000.1.unitypackage",
  "nextPartNumber": 0,
  "maxParts": 1000,
  "parts": [],
  "etags": []
}