GET
/
data
/
{namespace}
Fetch datasets in namespace
curl --request GET \
  --url https://api.datalinks.com/api/v1/data/{namespace} \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "namespace": "<string>",
    "nameWithNamespace": "<string>",
    "owner": "<string>",
    "user": "<string>",
    "visibility": {
      "dataDescription": "<string>",
      "fieldDefinition": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Use a Bearer token for authentication. Submit the token using the Authorization header: Authorization: Bearer <token>. The token can be generated in Settings

Path Parameters

namespace
string
required

The namespace is the name you want to group your datasets around.

Response

200
application/json

Successful response containing data with namespace details.

The response is of type object[].