For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
Chat TestingStart Workflow
TestMu AI
StatusCommunityBlog
Chat Testing

Start Workflow

Starts a new, empty workflow and returns its ID.

POST
/api/start-workflow
Start Workflow
curl --request POST \
--url "https://agent-testing.lambdatest.com/api/start-workflow" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"project_id": "<project_id>"
}'
{
"success": true,
"message": "<string>",
"data": {}
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
project_idstringrequired

Project ID to associate with the workflow

Response

application/json

Successful Response

successbooleanrequired

Whether the operation was successful

messagestringrequired

Response message

dataobject

Response data

Start Workflow
curl --request POST \
--url "https://agent-testing.lambdatest.com/api/start-workflow" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"project_id": "<project_id>"
}'
{
"success": true,
"message": "<string>",
"data": {}
}