pydo.functions.get_namespace()
Generated on 30 Jun 2025
from pydo
version
v0.12.0
Description
Gets the namespace details for the given namespace UUID. To get namespace details, send a GET request to /v2/functions/namespaces/$NAMESPACE_ID
with no parameters.
Parameters
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
namespace_id |
string | True | The ID of the namespace to be managed. |
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.functions.get_namespace(namespace_id="aff93af3")
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.