Projects › Get Project Workflows
Projects
Get Project Workflows Get all workflow IDs for a project.
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 Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json BaseResponse envelope; data.workflows lists workflow summaries, newest first
success boolean required
Whether the operation was successful
message string required
Response message
data object required
▶ Hide child attributesdata. workflows object[]
▶ Show child attributes
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>"
}
]
}
}