Skip to main content
GET
/
schema
/
{user}
/
namespaces
List user namespaces
curl --request GET \
  --url https://api.datalinks.com/api/v1/schema/{user}/namespaces \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "cinematography",
    "owner": "550e8400-e29b-41d4-a716-446655440000"
  }
]

Authorizations

Authorization
string
header
required

Use a Bearer token for authentication. Submit the token using the Authorization header: Authorization: Bearer <token>.

Path Parameters

user
string
required

Username or 'self' for the current user.

Response

Returns a list of namespaces accessible to the user.

name
string
required

The name of the namespace.

Example:

"cinematography"

owner
string<uuid>
required

UUID of the namespace owner.

Example:

"550e8400-e29b-41d4-a716-446655440000"