Amazon S3
You'll need the following information to set up your Amazon S3 App with Paragon Connect:
- API Key
This is an API-only integration - workflow actions for this integration are still in development. You can still connect user accounts, build workflows, and access the API for this integration.
Once your users have connected their Amazon S3 account, you can use the Paragon SDK to access the Amazon S3 API on behalf of connected users.
Any Amazon S3 API endpoints can be accessed with the Paragon SDK as shown in this example.
// You can find your project ID in the Overview tab of any Integration
// Authenticate the user
paragon.authenticate(<ProjectId>, <UserToken>);
// Get an Object
paragon.request("amazons3", "[relative URL]", {
method: "GET"
});
// Create a Bucket
paragon.request("amazons3", "[relative URL]", {
method: "GET"
});
Once your Amazon S3 account is connected, you use the Amazon S3 Request step to access any of Amazon S3's API endpoints without the authentication piece.
When creating or updating records in Amazon S3, you can reference data from previous steps by typing
{{
to invoke the variable menu.Last modified 5mo ago