S3 API
Add files and folders
Create new folders and upload files to specific directories
POST
/
db
/
s3
/
{YOUR_BUCKET_NAME}
/
create
/
{PATH+}
Path
curl --request POST \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/db/s3/{YOUR_BUCKET_NAME}/create/{PATH+}
{
"statusCode": 200,
"body" {
...
compelete: true,
}
}
Path
YOUR_BUCKET_NAME
string
requiredThe name of the S3 bucket you want to create folders and files in.
PATH+
string
requiredThe path that you would like to add folders or files to of the form “folder1/folder2” or empty string if you want to add a file to the root directory.
Response
statusCode
number
Based off of standard HTTP request guidelines
body
object
Information concerning s3 bucket path request
curl --request POST \
--url https://vdrdfvu2b3.execute-api.us-east-2.amazonaws.com/v3/db/s3/{YOUR_BUCKET_NAME}/create/{PATH+}
{
"statusCode": 200,
"body" {
...
compelete: true,
}
}