Skip to main content
Unlisted page
This page is unlisted. Search engines will not index it, and only users having a direct link can access it.

Access Keys

A set of operations for generating and managing access keys for interacting with Object Storage.

Endpoint NameURLDescription
List access keysGET /object-storage/access-keysReturns a list of your existing access keys.
Generate access key /object-storage/access-keysCreates a new access key and secret key pair.

The access_keys object

Access Key endpoints return an access_keys array, with each object providing details like key ID, description, region, and timestamps.


Attributes of the Access Key object


id integer

A unique identifier for the access key.


access_key string

The public-facing access key used for authentication.


region string

The region the access key is scoped to.


description string or null

Optional description of the access key.


user_id integer

The user the access key belongs to.


created_at date-time

Timestamp of when the access key was created.


Response
{
"id": 134,
"user_id": 27,
"access_key": "AKIA5Q2N7HBC9X7M4LQD",
"region": "CANADA-1",
"description": "For my backup scripts",
"created_at": "2025-05-22T10:14:31Z"
}

Back to top