Skip to main content
GET
/
open
/
agentic_engine
/
laiye
/
v1
/
app
/
run
/
query
/
task
/
{run_id}
Query workflow run result
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://adp-global.laiye.com/open/agentic_engine/laiye/v1/app/run/query/task/{run_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "code": "<string>",
  "message": "<string>",
  "tips": "<string>",
  "data": {}
}

Authorizations

X-API-Key
string
header
required

Path Parameters

run_id
string
required

Run ID.

Response

Workflow run result.

code
message
string
tips
string | null
data
object