v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
S3-Compatible Storage

Create access key

Creates a new access key for an S3-compatible storage. Returns the new access key and secret key. Maximum 2 access keys per storage.

post/storage/v4/object_storages/{storage_id}/access_keys

Path parameters

storage_idinteger required

Storage ID

Response

AccessKeyCreateDataV4

access_keystring required

Access key ID used as the username in S3 authentication. Pass this in the AWS_ACCESS_KEY_ID field of your S3 client.

created_atstring date-time required

ISO 8601 timestamp when the access key was created

secret_keystring required

Secret key used as the password in S3 authentication. Save this now — it cannot be retrieved again.

Example response

{
  "access_key": "AKIAIOSFODNN7EXAMPLE",
  "created_at": "2025-08-05T09:17:02Z",
  "secret_key": "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
}