Skip to content

Op Lifecycle Callback

POST
/callbacks/ops/{op_run_id}/{action}
curl --request POST \
--url https://example.com/callbacks/ops/example/complete

Forward op lifecycle callbacks to pipeline-api.

op_run_id
required
string
action
required
string
Allowed values: complete failed telemetry log progress beacon

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationError
object
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}