Skip to main content
Version: 2.5

WebhookEventType

Event types that can trigger webhook notifications.

These events are sent to configured webhook URLs when specific Actor run or build lifecycle events occur, enabling integration with external systems and automated workflows.

Index

Enumeration Members

ACTOR_BUILD_ABORTED

ACTOR_BUILD_ABORTED: 'ACTOR.BUILD.ABORTED'

Triggered when an Actor build is manually cancelled by user.

ACTOR_BUILD_CREATED

ACTOR_BUILD_CREATED: 'ACTOR.BUILD.CREATED'

Triggered when a new Actor build process is initiated.

ACTOR_BUILD_FAILED

ACTOR_BUILD_FAILED: 'ACTOR.BUILD.FAILED'

Triggered when an Actor build fails due to compilation or setup errors.

ACTOR_BUILD_SUCCEEDED

ACTOR_BUILD_SUCCEEDED: 'ACTOR.BUILD.SUCCEEDED'

Triggered when an Actor build completes successfully.

ACTOR_BUILD_TIMED_OUT

ACTOR_BUILD_TIMED_OUT: 'ACTOR.BUILD.TIMED_OUT'

Triggered when an Actor build process exceeds the time limit.

ACTOR_RUN_ABORTED

ACTOR_RUN_ABORTED: 'ACTOR.RUN.ABORTED'

Triggered when an Actor run is manually aborted by user.

ACTOR_RUN_CREATED

ACTOR_RUN_CREATED: 'ACTOR.RUN.CREATED'

Triggered when a new Actor run is created and initialized.

ACTOR_RUN_FAILED

ACTOR_RUN_FAILED: 'ACTOR.RUN.FAILED'

Triggered when an Actor run fails due to an error.

ACTOR_RUN_RESURRECTED

ACTOR_RUN_RESURRECTED: 'ACTOR.RUN.RESURRECTED'

Triggered when a previously failed Actor run is automatically resurrected.

ACTOR_RUN_SUCCEEDED

ACTOR_RUN_SUCCEEDED: 'ACTOR.RUN.SUCCEEDED'

Triggered when an Actor run completes successfully.

ACTOR_RUN_TIMED_OUT

ACTOR_RUN_TIMED_OUT: 'ACTOR.RUN.TIMED_OUT'

Triggered when an Actor run is terminated due to timeout.