GET
/
schema
/
{user}
/
{namespace}
/
datasets
List datasets within namespace
curl --request GET \
  --url https://api.datalinks.com/api/v1/schema/{user}/{namespace}/datasets \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "namespace": "<string>",
    "nameWithNamespace": "<string>",
    "owner": "<string>",
    "user": "<string>",
    "visibility": "Public"
  }
]

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 current user

namespace
string
required

Namespace for the dataset.

Response

200
application/json

Successful response containing data with namespace details.

The response is of type object[].