v1

latestSwagger 2.02026-08-04232286653.5 KB
S3Keys

Creates an S3 access key in the organization and returns the access key ID and one-time secret key.

post/organizations/{org_id}/storage/s3/keys

Path parameters

org_idstring required

ID of the organization that owns the S3 access key.

Request body

aliasstring

Human-readable alias for the new S3 access key.

expire_atstring

Expiration timestamp for the new S3 access key, in RFC3339 format.

Example request

{
  "alias": "my-service-account",
  "expire_at": "2022-12-03T19:58:34Z"
}

Response

access_key_idstring required

Access key ID used to authenticate S3 requests.

expire_atstring

Expiration timestamp of the S3 access key, in RFC3339 format.

secret_keystring required

Secret access key paired with the access key ID. Returned only once, at creation.

Example response

{
  "access_key_id": "S3U_ab4a6b00aa5f408ea9fbac6de5eb45ab",
  "expire_at": "2022-12-03T19:58:34Z",
  "secret_key": "K7i+q0..."
}