PUT
/
api
/
v1
/
files
/
upload
curl --request PUT \
  --url https://api.apexxcloud.com/api/v1/files/upload \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Signature: <api-key>' \
  --header 'X-Timestamp: <api-key>'
{
  "data": {
    "message": "<string>",
    "key": "<string>",
    "location": "<string>",
    "bucket": "<string>",
    "region": "<string>",
    "visibility": "<string>",
    "size": 123,
    "content_type": "<string>"
  }
}

Authorizations

X-Access-Key
string
header
required

Your API Access Key

X-Signature
string
header
required

HMAC SHA-256 signature of the request

X-Timestamp
string
header
required

ISO 8601 timestamp of the request

Query Parameters

bucket_name
string
required
region
string
required
visibility
enum<string>
Available options:
public,
private
key
string

Response

200 - application/json
File uploaded successfully
data
object