Upload files to S3
ApiScope: manage.s3.upload.file
API Scope Level: ServiceSubscriberScope
application/json
Request Body required
file byte
contentType string
fileName string
folderPrefix string
bucketName string
makeFilePubliclyAvailable boolean
cloudfrontDomain string
Responses
- 200
- 400
- 401
- 403
- 500
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
fileObjectUrl string
cloudfrontUrl string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string",
"fileObjectUrl": "string",
"cloudfrontUrl": "string"
}
Bad Request
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Unauthorized
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Forbidden
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
Internal Server Error
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
apiRequestId string
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string"
}
],
"apiRequestId": "string"
}
PUT /v2/aws/s3/objects
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
python / requests
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
go / native
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
nodejs / axios
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
ruby / Net::HTTP
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
csharp / RestSharp
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
php / cURL
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
java / OkHttp
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'
powershell / RestMethod
curl -L -X PUT '/manage/v2/aws/s3/objects' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string",
"contentType": "string",
"fileName": "string",
"folderPrefix": "string",
"bucketName": "string",
"makeFilePubliclyAvailable": true,
"cloudfrontDomain": "string"
}'