Access Keys
A set of operations for generating and managing access keys for interacting with Object Storage.
Endpoint Name | URL | Description |
---|---|---|
List access keys | GET /object-storage/access-keys | Returns a list of your existing access keys. |
Generate access key | POST /object-storage/access-keys | Creates 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"
}