curl --request POST 'https://api.brightalk.ai/automation-runs' \
--header "Authorization: Bearer $BRIGHTALK_API_KEY" \
--header "Brightalk-Version: 2026-07-16" \
--header "Content-Type: application/json" \
--header "Idempotency-Key: createAutomationRun-example-001" \
--data '{"automation_id":"atm_demo_001","contact_id":"con_demo_001"}'const response = await fetch("https://api.brightalk.ai/automation-runs", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.BRIGHTALK_API_KEY}`,
"Brightalk-Version": "2026-07-16",
"Content-Type": "application/json",
"Idempotency-Key": "createAutomationRun-example-001",
},
body: JSON.stringify({"automation_id":"atm_demo_001","contact_id":"con_demo_001"}),
});
console.log(response.status, await response.json());import os
import requests
response = requests.request(
"POST",
"https://api.brightalk.ai/automation-runs",
headers={
"Authorization": f"Bearer {os.environ['BRIGHTALK_API_KEY']}",
"Brightalk-Version": "2026-07-16",
"Content-Type": "application/json",
"Idempotency-Key": "createAutomationRun-example-001",
},
json={"automation_id":"atm_demo_001","contact_id":"con_demo_001"},
)
print(response.status_code, response.json()){
"id": "run_demo_001",
"status": "queued",
"automation_id": "atm_demo_001",
"contact_id": "con_demo_001",
"input": {},
"queued_at": "2026-07-20T01:00:00Z",
"created_at": "2026-07-20T01:00:00Z",
"updated_at": "2026-07-20T01:00:00Z",
"failure_code": "step_failed",
"started_at": "2026-07-20T01:00:00Z",
"completed_at": "2026-07-20T01:00:00Z",
"cancelled_at": "2026-07-20T01:00:00Z"
}建立自動化執行
從儀表板管理且已啟用的自動化,為一位聯絡人建立一次自動化執行並加入佇列。自動化定義指定要使用的代理、等待步驟、重試規則與分支。必須提供 Idempotency-Key;經清理的原始 JSON 主體上限為 1 MiB。每個回應都包含 Brightalk-Version 與 X-Request-Id;受到速率限制的回應還會提供實際套用之配額群組的計數器。
curl --request POST 'https://api.brightalk.ai/automation-runs' \
--header "Authorization: Bearer $BRIGHTALK_API_KEY" \
--header "Brightalk-Version: 2026-07-16" \
--header "Content-Type: application/json" \
--header "Idempotency-Key: createAutomationRun-example-001" \
--data '{"automation_id":"atm_demo_001","contact_id":"con_demo_001"}'const response = await fetch("https://api.brightalk.ai/automation-runs", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.BRIGHTALK_API_KEY}`,
"Brightalk-Version": "2026-07-16",
"Content-Type": "application/json",
"Idempotency-Key": "createAutomationRun-example-001",
},
body: JSON.stringify({"automation_id":"atm_demo_001","contact_id":"con_demo_001"}),
});
console.log(response.status, await response.json());import os
import requests
response = requests.request(
"POST",
"https://api.brightalk.ai/automation-runs",
headers={
"Authorization": f"Bearer {os.environ['BRIGHTALK_API_KEY']}",
"Brightalk-Version": "2026-07-16",
"Content-Type": "application/json",
"Idempotency-Key": "createAutomationRun-example-001",
},
json={"automation_id":"atm_demo_001","contact_id":"con_demo_001"},
)
print(response.status_code, response.json()){
"id": "run_demo_001",
"status": "queued",
"automation_id": "atm_demo_001",
"contact_id": "con_demo_001",
"input": {},
"queued_at": "2026-07-20T01:00:00Z",
"created_at": "2026-07-20T01:00:00Z",
"updated_at": "2026-07-20T01:00:00Z",
"failure_code": "step_failed",
"started_at": "2026-07-20T01:00:00Z",
"completed_at": "2026-07-20T01:00:00Z",
"cancelled_at": "2026-07-20T01:00:00Z"
}授權
Use a server-side Brightalk API key in the Authorization header.
標頭
選擇以日期為基礎的 API 版本。省略時會使用組織固定的預設版本。
"2026-07-16"由呼叫端產生且符合 [A-Za-z0-9._:-]{1,64} 的關聯值。無效值會被取代。
64^[A-Za-z0-9._:-]{1,64}$保留 24 小時的非機密金鑰。僅可為語意相同的請求重複使用。
1 - 255^(?=.{1,255}$)[\x21-\x7e](?:[\x20-\x7e]*[\x21-\x7e])?$主體
JSON request body. The raw encoded body is limited to 1 MiB and unknown fields are rejected.
回應
自動化執行已由持久佇列接受。
不透明的資源識別碼。
1 - 255"run_demo_001"
queued, running, waiting, completed, failed, cancelled 不透明的資源識別碼。
1 - 255"atm_demo_001"
不透明的資源識別碼。
1 - 255"con_demo_001"
只能提供所選自動化宣告的名稱。輸入的序列化 JSON 上限為 32 KiB,巢狀深度上限為 10。目前契約未公開任何已宣告名稱,因此請省略 input 或傳送空物件。
執行進入持久佇列的時間。
"2026-07-20T01:00:00Z"
執行資源的建立時間。
"2026-07-20T01:00:00Z"
執行資源上次更新的時間。
"2026-07-20T01:00:00Z"
執行失敗時的穩定失敗分類。
"step_failed"
開始執行的時間。
"2026-07-20T01:00:00Z"
執行完成的時間。
"2026-07-20T01:00:00Z"
取消完成的時間。
"2026-07-20T01:00:00Z"