GET
/
waap
/
v1
/
domains
/
{domain_id}
/
api-path-groups
import os
from gcore import Gcore

client = Gcore(
    api_key=os.environ.get("GCORE_API_KEY"),  # This is the default and can be omitted
)
api_path_groups = client.waap.domains.api_path_groups.list(
    0,
)
print(api_path_groups.api_path_groups)
{
  "api_path_groups": [
    "accounts",
    "internal"
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

domain_id
integer
required

The domain ID

Response

200
application/json

Successful Response

Response model for the API path groups