Stop playground execution
Stop the currently running execution in the playground session. This cancels any pending workflow operations.
JWT token for authentication
In: header
Path Parameters
Playground session UUID
uuidResponse Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/playground/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08/stop"{ "success": true, "message": "Execution stopped"}Send a message to the playground session POST
Send a user message or trigger workflow execution with inputs. This starts or continues the conversation in the playground. The message is created with status "pending" and processing begins immediately (synchronously) or is queued (asynchronously) based on the session's execution mode. The response returns immediately with the message entity, allowing clients to poll the message status endpoint to track processing progress. Messages are processed in sequence order within a session to ensure proper conversation flow. If a previous message is not yet complete, the request will be rejected with a conflict error.
API health check GET
Check if the FlowDrop API is running and responsive. This endpoint is at the root level following industry conventions for Kubernetes liveness/readiness probes and load balancer health checks.