listActionRuns

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

Retrieves a list of runs for a specific action.

Return

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

Parameters

namespace

The namespace of the action.

action

The name of the action.

updatedAfterEpoch

The timestamp (in epoch format) to retrieve runs updated after (optional).

limit

The maximum number of runs to retrieve (optional).

offset

The offset for pagination (optional).

correlationId

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