# Request File Upload URL

Upload temporary files through this interface, and the system will automatically delete them after 7 days

Endpoint: POST /cloudphone/uploadUrl
Version: 1.0.0
Security: Authorization

## Request fields (application/json):

  - `id` (integer)
    Cloud phone ID

  - `fileName` (string)
    Upload file name

## Response 200 fields (application/json):

  - `code` (integer, required)
    Return result code 0:Normal Other codes are exceptions.

  - `msg` (string, required)
    error message

  - `data` (object, required)

  - `data.presignedUrl` (string, required)
    File upload URL use https PUT uploading files to cloud storage

  - `requestId` (string, required)

