POST
/
db
/
s3
/
{YOUR_BUCKET_NAME}
/
create
/
{PATH+}
curl --request POST \
  --url https://7gzkqkjgcg.execute-api.us-east-2.amazonaws.com/stage/db/s3/{YOUR_BUCKET_NAME}/create/{PATH+}
{
  "statusCode": 200,
  "body" {
    ...
    compelete: true,
  }
}

Path

YOUR_BUCKET_NAME
string
required

The name of the S3 bucket you want to create folders and files in.

PATH+
string
required

The 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

{
  "statusCode": 200,
  "body" {
    ...
    compelete: true,
  }
}