listActions

@GET(value = "/namespaces/{namespace}/actions")
abstract fun listActions(@Path(value = "namespace") namespace: String, @Query(value = "limit") limit: Int? = null, @Query(value = "offset") offset: Int? = null, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<List<Action>>

Retrieves a list of actions within a namespace.

Return

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

Parameters

namespace

The namespace to retrieve actions from.

limit

The maximum number of actions to retrieve (optional).

offset

The offset for pagination (optional).

correlationId

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