取消工作流运行
curl --request POST \
--url https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"reason": "用户主动取消"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: '用户主动取消'})
};
fetch('https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel"
payload = { "reason": "用户主动取消" }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)HttpResponse<String> response = Unirest.post("https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"reason\": \"用户主动取消\"\n}")
.asString();const url = 'https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel';
const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: '用户主动取消'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel"
payload := strings.NewReader("{\n \"reason\": \"用户主动取消\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}using RestSharp;
var options = new RestClientOptions("https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("X-API-Key", "<api-key>");
request.AddJsonBody("{\n \"reason\": \"用户主动取消\"\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'reason' => '用户主动取消'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"code": "success",
"message": "",
"data": {
"run_id": "run_xyz789",
"status": "succeeded",
"output": {
"result": "采购单分析完成"
},
"error": null,
"started_at": "2026-04-30T10:00:00Z",
"ended_at": "2026-04-30T10:00:15Z"
}
}{
"code": "<string>",
"message": "<string>",
"tips": "<string>"
}工作流
取消工作流运行
取消等待中、运行中或已暂停的工作流运行。已成功、失败、已取消或超时的运行不能取消。
POST
/
open
/
agentic_engine
/
laiye
/
v1
/
app
/
run
/
{run_id}
/
cancel
取消工作流运行
curl --request POST \
--url https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"reason": "用户主动取消"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: '用户主动取消'})
};
fetch('https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel"
payload = { "reason": "用户主动取消" }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)HttpResponse<String> response = Unirest.post("https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"reason\": \"用户主动取消\"\n}")
.asString();const url = 'https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel';
const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: '用户主动取消'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel"
payload := strings.NewReader("{\n \"reason\": \"用户主动取消\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}using RestSharp;
var options = new RestClientOptions("https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("X-API-Key", "<api-key>");
request.AddJsonBody("{\n \"reason\": \"用户主动取消\"\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://adp.laiye.com/open/agentic_engine/laiye/v1/app/run/{run_id}/cancel",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'reason' => '用户主动取消'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"code": "success",
"message": "",
"data": {
"run_id": "run_xyz789",
"status": "succeeded",
"output": {
"result": "采购单分析完成"
},
"error": null,
"started_at": "2026-04-30T10:00:00Z",
"ended_at": "2026-04-30T10:00:15Z"
}
}{
"code": "<string>",
"message": "<string>",
"tips": "<string>"
}⌘I
