Event Coordination
Signal Event
Signals an event with associated data, unblocking any clients waiting for this event. This enables coordination between different browser sessions, workflows, or external processes.
post/v1/events/{event_name}
Path parameters
event_namestring required
The name of the event to signal
Request body
Example request
{
"data": {
"message": "Task completed",
"result": "success",
"timestamp": "2024-01-01T12:00:00Z"
}
}Response
Event signaled successfully