GET
/
cloud
/
v1
/
faas
/
namespaces
/
{project_id}
/
{region_id}
/
{namespace_name}
curl --request GET \
  --url https://api.gcore.com/cloud/v1/faas/namespaces/{project_id}/{region_id}/{namespace_name} \
  --header 'APIKey: <api-key>'
{
  "created_at": "2023-08-22T11:21:00Z",
  "description": "This is a sample namespace.",
  "envs": {
    "ENV_VAR": "value"
  },
  "functions": [
    {
      "name": "function-name"
    }
  ],
  "functions_deploy_status": {
    "deployed": 1
  },
  "name": "namespace-name",
  "status": "Active"
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

project_id
integer
required

Project ID

Examples:

1

region_id
integer
required

Region ID

Examples:

1

namespace_name
string
required

Namespace name

Examples:

"namespace-name"

Response

200 - application/json

OK

The response is of type object.