Our preferred mode of data delivery is through Amazon AWS S3.
To receive data via S3, follow these steps:
Log into the AWS S3 console.
- Create a new bucket for deliveries (e.g.,
s3://YOURCOMPANY-data-deliveries
).
To allow Forager.ai to send data to your S3 bucket, you will need to apply the following bucket policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::YOURCOMPANY-data-deliveries",
"arn:aws:s3:::YOURCOMPANY-data-deliveries/*"
]
}
]
}
Once the bucket is set up, send the following details to Forager.ai:
- AWS Access Key
- AWS Secret Key
Our team will configure the data delivery to send data directly to your S3 bucket.
📩 For Support: Contact us at support@forager.ai.