API Credentials

S3 credentials let you access IBEE Object Storage buckets using any S3-compatible tool. Each credential is scoped to a specific workspace and provides an Access Key ID + Secret Access Key.

Create credentials from the API Tokens page under Settings > API Tokens. Select the S3 Buckets access policy, choose a workspace, set permissions, and click Create Credential. For the full step-by-step procedure — including permission levels, bucket scoping, and credential management — see API Tokens.

The Secret Access Key is shown once only. Copy it immediately. If you lose it, revoke the credential and create a new one.

S3 endpoint format

https://WORKSPACE-ID.blob.ibeestorage.com

Replace WORKSPACE-ID with your workspace identifier. Find this value on the S3 Credentials tab after creating a credential.

Quick reference

AWS CLI

$aws configure set aws_access_key_id YOUR-ACCESS-KEY-ID
$aws configure set aws_secret_access_key YOUR-SECRET-ACCESS-KEY
$aws configure set default.region us-east-1
$
$# List buckets
$aws s3 ls --endpoint-url https://WORKSPACE-ID.blob.ibeestorage.com

rclone

1[ibee]
2type = s3
3provider = Other
4access_key_id = YOUR-ACCESS-KEY-ID
5secret_access_key = YOUR-SECRET-ACCESS-KEY
6endpoint = https://WORKSPACE-ID.blob.ibeestorage.com