Introducing serverless SFTP and infinitely-scalable data storage
Starting today, both Stedi SFTP and Buckets are now Generally Available.
Features
- Provision SFTP users via the Stedi dashboard or the API
- Securely manage credentials
- Scale to an unlimited number of trading partners
- Send, receive, and store an unlimited number of files
Where Stedi SFTP fits in
Stedi SFTP works for any workflow requiring file transfer between trading partners. If you’re building an EDI integration, you could use Stedi SFTP to:
- Receive EDI files from your trading partner via SFTP, and retrieve those files using the Buckets SDK
- Using the Buckets SDK, send EDI files for your trading partner to pick up via SFTP.
Using Stedi SFTP
sftp WL9F11A9@data.sftp.us.stedi.com
WL9F11A9@data.sftp.us.stedi.com's password:
Connected to data.sftp.us.stedi.com.
sftp>
// Stedi SDK example for GetObject from your local machine
import { BucketsClient, GetObjectCommand } from "@stedi/sdk-client-buckets";
import consumers from 'stream/consumers';
// Enter your Stedi API key here
const apiKey = "<your-stedi-api-key>"; // Change this to your Stedi API key
async function main() {
// create a new BucketsClient to the Stedi US region
const stediclient = new BucketsClient({
region: "us",
apiKey: apiKey
});
// Prepare a GetObject command
const getObject = new GetObjectCommand(
{
bucketName: "your-stedi-bucket" // Change this to your existing Bucket name
key: "document.txt" // Change this to an existing object name
}
);
// Send the request to GetObject request to Stedi
const getObjectOutput = await stediclient.send(getObject);
// Pretty print the object output
console.log(await consumers.text(getObjectOutput.body));
}
// Run the main function
main();
In this example, we've printed the file as a string, but you could also write it to a file on your disk.
Stedi SFTP pricing
Stedi SFTP and Stedi Buckets are now Generally Available
Stedi SFTP offers a hassle-free way to provision SFTP access as part of your EDI solution or B2B integration, without any operational overhead or minimum cost. It gives developers the ability to configure SFTP access for their trading partners via the UI or API. Developers can programmatically access the same files using the Stedi Buckets SDK.
Serverless SFTP endpoint for exchanging files at any volume. Provision users instantly via API and send an unlimited number of files via SFTP or FTPS, without any operational overhead.
Access data uploaded to an SFTP endpoint, read/write documents and build powerful integrations based on document events.
Get blog posts delivered to your inbox.