listActionAcrossNamespaces

@GET(value = "/actions")
abstract fun listActionAcrossNamespaces(@Query(value = "parent") parent: String, @Query(value = "type") type: String, @Query(value = "updatedAfterEpoch") updatedAfterEpoch: Long = 0, @Query(value = "limit") limit: Int = 100, @Query(value = "offset") offset: Int = 0, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Void>

Retrieves a list of actions across namespaces.

Return

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

Parameters

parent

The parent value.

type

The type value.

updatedAfterEpoch

The timestamp (in epoch format) to

retrieve actions updated after (optional, defaults to 0).

limit

The maximum number of actions to retrieve (optional, defaults to 100).

offset

The offset for pagination (optional, defaults to 0).

correlationId

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