Skip to main content

Get object storage access key details

GET 

/object_storage/access_keys/access_key

Returns object storage access key details.

Scopes

  • object_storage

OAuth2 Scopes

When using OAuth2 authentication, scopes are prefixed with api.katapult.io/core/v1/.

Request

Query Parameters

    access_key[id] string

    The object storage access key to find.

Responses

Returns object storage access key details.

Schema

    object_storage_access_key

    object

    required

    id string
    name string
    created_at integer
    region string
    state ObjectStorageAccessKeyStateEnum (string)

    Possible values: [pending, configured]

    all_buckets_read boolean

    Global access to list all buckets

    all_objects_read boolean

    Global read access for objects in all buckets

    all_objects_write boolean

    Global write access to create and delete objects in all buckets

    read_buckets string[]
    write_buckets string[]
    server_url stringnullable

    The server URL for the S3 credentials

    s3_access_key_id stringnullable

    The S3 access key ID

    s3_secret_access_key stringnullable

    Only available when using the generate credentials endpoint

Loading...