listActionVersions

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

Retrieves a list of versions 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.

limit

The maximum number of versions to retrieve.

offset

The offset for pagination.

correlationId

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