Documentation Index
Fetch the complete documentation index at: https://support.myapps.ai/llms.txt
Use this file to discover all available pages before exploring further.
Description
This endpoint allows you to run a workflow by providing a deployment ID and optional input parameters.
Request Body
Content-Type: application/json
{
"deployment_id": "string", // The ID of the deployment to run (required)
"inputs": { // Optional inputs for the workflow
"key": "string or number"
}
}`
Responses
200 OK
`{
"run_id": "string" // The ID of the run that has been queued
}`
401 Invalid or Expired Token
`Invalid or expired token`
500 Error Creating Run
`{
"error": "string" // Error message detailing why the run creation failed
}`