// You can find your project ID in the Overview tab of any Integration
// Authenticate the user
paragon.authenticate(<ProjectId>, <UserToken>);
// Get an Object
await paragon.request("amazons3", "/<Bucket>/<Key>", {
method: "GET"
});
// Create a Bucket
await paragon.request("amazons3", "/<Bucket>", {
method: "PUT",
body: `<?xml version="1.0" encoding="UTF-8"?>
<CreateBucketConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<LocationConstraint>us-east-2</LocationConstraint>
</CreateBucketConfiguration>`
});