getOwners

@GET(value = "api/v2/depots/{depot}/owners")
abstract fun getOwners(@Path(value = "depot") depotString: String, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<List<String>>

Retrieves the list of owners for the specified depot.

Return

A Call object representing the API call.

Parameters

depotString

The name of the depot.

correlationId

A unique identifier for correlating logs and metrics.