Chat Testing › Process Sources
Chat Testing
Process Sources Process files from multiple sources (uploads, Confluence, JIRA, GitHub)
and add them to the workflow.
curl -- request POST \
-- url "https://agent-testing.lambdatest.com/api/process-sources" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: multipart/form-data" \
-- form 'workflow_id=<workflow_id>' \
-- form 'project_id=<project_id>' \
-- form 'files=' \
-- form 'confluence=<confluence>' \
-- form 'jira=<jira>' \
-- form 'github=<github>' \
-- form 'special_instructions=<special_instructions>'
{
"success" : true ,
"message" : "<string>" ,
"data" : { }
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body multipart/form-data workflow_id string required
special_instructions string
Response 200▼
application/json Successful Response
success boolean required
Whether the operation was successful
message string required
Response message
curl -- request POST \
-- url "https://agent-testing.lambdatest.com/api/process-sources" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: multipart/form-data" \
-- form 'workflow_id=<workflow_id>' \
-- form 'project_id=<project_id>' \
-- form 'files=' \
-- form 'confluence=<confluence>' \
-- form 'jira=<jira>' \
-- form 'github=<github>' \
-- form 'special_instructions=<special_instructions>'
{
"success" : true ,
"message" : "<string>" ,
"data" : { }
}