DigitalOcean-public.v2-new_Functions
Get Namespace
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.
get/v2/functions/namespaces/{namespace_id}
Path parameters
namespace_idstring required
The ID of the namespace to be managed.
Response
A JSON response object with a key called namespace. The object contains the properties associated with the namespace.
Example response
{
"namespace": {
"api_host": "https://api_host.io",
"namespace": "fn-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"created_at": "2022-09-14T04:16:45Z",
"updated_at": "2022-09-14T04:16:45Z",
"label": "my namespace",
"region": "nyc1",
"uuid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"key": "d1zcd455h01mqjfs4s2eaewyejehi5f2uj4etqq3h7cera8iwkub6xg5of1wdde2"
}
}