listDataset

@GET(value = "/v1/namespaces/{namespace}/datasets")
abstract fun listDataset(@Path(value = "namespace") namespace: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Dataset>

Retrieves a list of datasets within a namespace.

Return

A Call object representing the API call that can be executed asynchronously.

Parameters

namespace

The namespace to retrieve datasets from.

correlationId

The correlation ID for tracking the request (optional, defaults to a random UUID).