Skip to main content
POST
/
store
/
namespaces
List Namespaces
curl --request POST \
  --url https://api.example.com/store/namespaces \
  --header 'Content-Type: application/json' \
  --data '
{
  "prefix": [
    "<string>"
  ],
  "suffix": [
    "<string>"
  ],
  "max_depth": 50,
  "limit": 100,
  "offset": 0
}
'
{
  "namespaces": [
    [
      "<string>"
    ]
  ]
}

Body

application/json

Request model for listing store namespaces

prefix
string[] | null

Filter by namespace prefix

suffix
string[] | null

Filter by namespace suffix

max_depth
integer | null

Maximum namespace depth to return

Required range: 1 <= x <= 100
limit
integer
default:100

Maximum results

Required range: 1 <= x <= 1000
offset
integer
default:0

Results offset

Required range: x >= 0

Response

Successful Response

Response model for listing store namespaces

namespaces
string[][]
required