pydo.spaces_key.patch()

Generated on 9 Jun 2026 from pydo version v0.36.0

Usage

client.spaces_key.patch(
    access_key="DOACCESSKEYEXAMPLE",
    body={
        "name": "my-access-key",
        "grants": [...],
    },
)
Returns JSONRaises HttpResponseError

Description

To update Spaces Access Key, send a PUT or PATCH request to /v2/spaces/keys/{access_key}. At the moment, you cannot convert a fullaccess key to a scoped key or vice versa. You can only update the name of the key.

Parameters

access_key string required

The access key's ID.

name string optional

Example: my-access-key

The access key's name.

grants array of objects optional

The list of permissions for the access key.

Default: []

Show child properties
bucket string required

Example: my-bucket

The name of the bucket.

permission string required

Example: read

The permission to grant to the user. Possible values are read, readwrite, fullaccess, or an empty string.

access_key string optional read-only

Example: DOACCESSKEYEXAMPLE

The Access Key ID used to access a bucket.

created_at string optional read-only

Example: 2018-07-19T15:04:16Z

The date and time the key was created.

Request Sample

Show Request Sample
import os
from pydo import Client

client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

req = {
  "name": "new-key-name"
}

resp = client.spaces_key.patch(access_key="DOACCESSKEYEXAMPLE", body=req)

Response Example

Show Response Example
{
  "key": {
    "name": "new-key-name",
    "access_key": "DOACCESSKEYEXAMPLE",
    "grants": [
      {
        "bucket": "my-bucket",
        "permission": "read"
      }
    ],
    "created_at": "2018-07-19T15:04:16Z"
  }
}

More Information

See /v2/spaces/keys/{access_key} in the API reference for additional detail on responses, headers, parameters, and more.

We can't find any results for your search.

Try using different keywords or simplifying your search terms.