Skip to main content
POST
/
open
/
agentic_engine
/
laiye
/
v1
/
app
/
run
Run workflow application (sync)
const options = {
  method: 'POST',
  headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({
    application_id: '<string>',
    release_version_id: '<string>',
    session_id: '<string>',
    files: [{}],
    inputs: {}
  })
};

fetch('https://adp-global.laiye.com/open/agentic_engine/laiye/v1/app/run', 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

Body

application/json
application_id
string
required
release_version_id
string
session_id
string
files
object[]
inputs
object

Response

Workflow run result.

code
message
string
tips
string | null
data
object