getDataset

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

Retrieves a specific dataset.

Return

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

Parameters

namespace

The namespace of the dataset.

dataset

The name of the dataset.

correlationId

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