get https://{hostname}/edgekv/v1/networks//namespaces
View a list of all EdgeKV namespaces.
Recipes
List namespaces
Open Recipe
Responses
View a list of all EdgeKV namespaces.
xxxxxxxxxx
curl --request GET \
--url https://hostname/edgekv/v1/networks/production/namespaces \
--header 'accept: application/json'
xxxxxxxxxx
24{
"namespaces": [
{
"dataAccessPolicy": {
"policyType": "inherited",
"restrictDataAccess": true
},
"geoLocation": "US",
"groupId": 54321,
"namespace": "default",
"retentionInSeconds": 15724800
},
{
"dataAccessPolicy": {
"policyType": "overridden",
"restrictDataAccess": false
},
"geoLocation": "US",
"groupId": 54321,
"namespace": "marketing",
"retentionInSeconds": 15724800
}
]
}