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
ProjectsGet Project Workflows
TestMu AI
StatusCommunityBlog
Projects

Get Project Workflows

Get all workflow IDs for a project.

GET
/api/projects/{project_id}/workflows
Get Project Workflows
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}/workflows" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": {
"workflows": [
{
"workflow_id": "<string>",
"name": "<string>",
"created_at": "2018-03-15T12:00:00Z",
"document": true,
"requirement_analysis": true,
"selected_categories": [
"<string>"
],
"stage": "<string>",
"default_first_message": "<string>"
}
]
}
}

Authorizations

Authorizationstringheaderrequired

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

Path Parameters

project_idstringrequired

Response

application/json

BaseResponse envelope; data.workflows lists workflow summaries, newest first

successbooleanrequired

Whether the operation was successful

messagestringrequired

Response message

dataobjectrequired
data.workflowsobject[]
Get Project Workflows
curl --request GET \
--url "https://agent-testing.lambdatest.com/api/projects/{project_id}/workflows" \
--header "Authorization: Basic <encoded-value>"
{
"success": true,
"message": "<string>",
"data": {
"workflows": [
{
"workflow_id": "<string>",
"name": "<string>",
"created_at": "2018-03-15T12:00:00Z",
"document": true,
"requirement_analysis": true,
"selected_categories": [
"<string>"
],
"stage": "<string>",
"default_first_message": "<string>"
}
]
}
}