Skip to main content

List object storage access keys

GET 

/organizations/organization/object_storage/access_keys

Returns a list of all object storage access keys for a given organization

Scopes

  • object_storage

OAuth2 Scopes

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

Request

Query Parameters

    organization[id] string

    The organization to return access keys for.

    All 'organization[]' params are mutually exclusive, only one can be provided.

    organization[sub_domain] string

    The organization to return access keys for.

    All 'organization[]' params are mutually exclusive, only one can be provided.

    page integer

    Possible values: >= 1

    Default value: 1

    The page number to request. If not provided, the first page will be returned.

    per_page integer

    Possible values: >= 1

    Default value: 30

    The number of items to return per page. If not provided, the default value will be used.

Responses

Returns a list of all object storage access keys for a given organization

Schema

    pagination

    object

    required

    current_page integer

    The current page

    total_pages integernullable

    The total number of pages

    total integernullable

    The total number of items across all pages

    per_page integer

    The number of items per page

    large_set boolean

    Is this a large set and therefore the total number of records cannot be returned?

    object_storage_access_keys

    object[]

    required

    The object storage access keys for the organization

  • Array [

  • 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...