get
https://core.{customer-subdomain}.ec.avayacloud.com/api/workflow/v1/workflows/sessions/
Retrieves the current status and output variables of a workflow session.
Use Cases
- Check if workflow is still running or has completed
- Retrieve output variables set during workflow execution
- Monitor workflow progress
Response Details
isRunning: Boolean indicating if workflow is still executingstatus: Current status (RUNNING or COMPLETED)currentModule: ID of current module being executed (null if completed)outputVariables: All variables set during workflow execution
Security Considerations
- Validate session ID belongs to the requesting client
- Filter sensitive data from outputVariables before exposing to end users
- Implement proper access controls
