createLineage

@POST(value = "/v1/lineage")
abstract fun createLineage(@Body event: LineageEvent, @Header(value = "dataos-correlation-id") correlationId: String = UUID.randomUUID().toString()): Call<Void>

Creates a lineage event.

Return

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

Parameters

event

The lineage event to create.

correlationId

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