MeetStream Guide: Amazon S3 Custom Object Storage

View as Markdown

By default, MeetStream stores bot media—audio, video, transcripts, screenshots, chat logs, and meeting manifests—in a MeetStream-managed bucket. Fetch endpoints return presigned download URLs for those files.

Custom object storage lets you send those artifacts directly to your own storage account while keeping the same MeetStream bot and fetch APIs.

Use the aws provider for Amazon S3 or another S3-compatible endpoint. Authenticate with an AWS access key pair or IAM role.

Only one S3-compatible custom provider is active at a time. Saving a new aws or alibaba_oss configuration activates it and deactivates the other one. Artifacts written before the change remain pinned to their original provider, bucket, and prefix.

Custom storage is useful for compliance, regional data storage, lifecycle control, or direct ingestion into your data platform.


1) Prerequisites

All providers require:

  1. A bucket owned by your organization.
  2. Credentials that can write to the prefix you configure.
  3. A MeetStream API key.

For read_write access, the credentials also need to read uploaded objects so MeetStream can generate download URLs and retrieve JSON artifacts.

Create an IAM user access key or an IAM role that has access to your bucket and configured prefix.


2) Configure custom storage

1PUT /api/v1/admin/configs?config_type=storage
2Authorization: Token <YOUR_API_KEY>
3Content-Type: application/json
1{
2 "provider": "aws",
3 "bucket_name": "your-s3-bucket",
4 "region": "us-east-1",
5 "access_key_id": "AKIA...",
6 "secret_key": "...",
7 "access_mode": "read_write",
8 "prefix": "meetstream",
9 "prefixes": {
10 "audio": "recordings/audio",
11 "video": "recordings/video",
12 "transcript": "recordings/transcripts",
13 "metadata": "recordings/metadata"
14 }
15}

Parameters

ParameterRequiredDescription
providerYes"aws".
bucket_nameYesName of your S3 bucket.
regionYesAWS region.
access_key_idConditionalRequired with auth_method: "access_keys".
secret_keyConditionalRequired with auth_method: "access_keys".
auth_methodNo"access_keys" (default) or "iam_role".
role_arnConditionalRequired only with auth_method: "iam_role".
external_idConditionalRequired only with auth_method: "iam_role".
access_modeNo"read_write" (default) or "write_only". See Access modes.
prefixNoBase object-key prefix. Defaults to "meetstream". Leading/trailing slashes are removed and .. is rejected.
prefixesNoPer-category overrides for audio, video, transcript, and metadata. A missing category inherits prefix.
endpoint_urlNoHTTPS endpoint override that can target another S3-compatible endpoint.

Secrets are stored as encrypted parameters and are never returned by the API.


3) Grant bucket permissions

Scope policies to the configured prefix. If you use distinct category prefixes, include one object resource for each distinct prefix.

For a read_write configuration using the meetstream prefix:

1{
2 "Version": "2012-10-17",
3 "Statement": [
4 {
5 "Effect": "Allow",
6 "Action": "s3:ListBucket",
7 "Resource": "arn:aws:s3:::your-s3-bucket"
8 },
9 {
10 "Effect": "Allow",
11 "Action": [
12 "s3:PutObject",
13 "s3:GetObject",
14 "s3:DeleteObject"
15 ],
16 "Resource": "arn:aws:s3:::your-s3-bucket/meetstream/*"
17 }
18 ]
19}

For write_only, remove s3:ListBucket and s3:GetObject; keep s3:PutObject and s3:DeleteObject.


4) Access modes

ModeMeetStream uploads to your bucketMeetStream fetch APIs
read_write (default)YesReturn presigned URLs or read JSON artifacts from your bucket
write_onlyYesReturn 403; retrieve objects directly through your own storage access

Use write_only when you want MeetStream to deliver files to your bucket but do not want it to read them back.

Configuration validation

MeetStream validates credentials before saving them:

  • aws with read_write validates bucket access with HeadBucket.
  • write_only configurations use temporary write probes under each distinct effective prefix.

Successful probes are cleaned up. Grant DeleteObject to prevent a failed cleanup from leaving a probe object behind.


5) File layout in your bucket

MeetStream writes every artifact below the resolved prefix for its category, followed by the bot ID:

<category-prefix>/<bot_id>/<artifact>

With the default prefix: "meetstream" and no per-category overrides:

meetstream/
abc123/
audio.wav
meeting_recording.mp4
manifest.json
participants.json
chats.json
screenshot/
transcription/

The exact provider, bucket, and category prefix used for each processed artifact are recorded with the bot or transcript. Updating a storage configuration later does not break retrieval of existing media.


6) Fetch media after configuration

Your MeetStream API calls do not change when custom storage is enabled. With read_write, the API returns a presigned URL generated by the configured provider.

Endpointread_writewrite_only
GET /api/v1/bots/{bot_id}/get_audioPresigned mixed-audio URL403
GET /api/v1/bots/{bot_id}/get_videoPresigned recording URL403
GET /api/v1/bots/{bot_id}/get_audio_streamsPer-participant audio URLs, when requested for the bot403
GET /api/v1/bots/{bot_id}/get_recording_streamsPer-participant video URLs, when requested for the bot403
Screenshot, chat, participant, manifest, and transcript fetch endpointsRead from the configured bucket403

Presigned media URLs expire after one hour. Call the fetch endpoint again to obtain a fresh URL.


7) View, change, or delete configuration

View

1GET /api/v1/admin/configs
2Authorization: Token <YOUR_API_KEY>

The response includes non-sensitive metadata under StorageConfig.

Delete

1DELETE /api/v1/admin/configs?key_name=aws
2Authorization: Token <YOUR_API_KEY>

Deleting a configuration affects only future processing; MeetStream does not delete objects already written to your bucket.


8) Troubleshooting

A fetch endpoint returns 403 with "access_mode": "write_only"

The configured provider is intentionally write-only. Download the object through your own storage workflow, or update it to read_write with read permissions.

A presigned URL returns 403

  • It may have expired; fetch a new one from MeetStream.
  • Verify the configured credentials still have object read access.

Files are not in the newly configured bucket

Only artifacts processed after a configuration change use the new active provider. Existing artifacts remain in their original bucket.