Wait for Event
Event Coordination
Wait for Event
Waits for a specific event to be signaled by another process, workflow, or session. This endpoint blocks until the event is signaled or the timeout is reached. Useful for coordinating between multiple browser sessions or workflows.
POST
Wait for Event
Authorizations
API key passed in the header
Path Parameters
The name of the event to wait for
Body
application/json
Timeout in milliseconds to wait for the event. Defaults to 60000ms (1 minute).
Response
Event was signaled successfully
The event data that was signaled
Example:
{
"message": "Task completed",
"result": "success",
"timestamp": "2024-01-01T12:00:00Z"
}
