Call 완료
curl --request POST \
--url https://api.example.com/v2/{entity}/{project}/calls/complete \
--header 'Content-Type: application/json' \
--data '
{
"batch": [
{
"attributes": {},
"ended_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"inputs": {},
"op_name": "<string>",
"project_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"summary": {
"status_counts": {},
"usage": {}
},
"trace_id": "<string>",
"display_name": "<string>",
"exception": "<string>",
"otel_dump": {},
"output": null,
"parent_id": "<string>",
"thread_id": "<string>",
"turn_id": "<string>",
"wb_run_id": "<string>",
"wb_run_step": 123,
"wb_run_step_end": 123,
"wb_user_id": "<string>"
}
]
}
'import requests
url = "https://api.example.com/v2/{entity}/{project}/calls/complete"
payload = { "batch": [
{
"attributes": {},
"ended_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"inputs": {},
"op_name": "<string>",
"project_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"summary": {
"status_counts": {},
"usage": {}
},
"trace_id": "<string>",
"display_name": "<string>",
"exception": "<string>",
"otel_dump": {},
"output": None,
"parent_id": "<string>",
"thread_id": "<string>",
"turn_id": "<string>",
"wb_run_id": "<string>",
"wb_run_step": 123,
"wb_run_step_end": 123,
"wb_user_id": "<string>"
}
] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
batch: [
{
attributes: {},
ended_at: '2023-11-07T05:31:56Z',
id: '<string>',
inputs: {},
op_name: '<string>',
project_id: '<string>',
started_at: '2023-11-07T05:31:56Z',
summary: {status_counts: {}, usage: {}},
trace_id: '<string>',
display_name: '<string>',
exception: '<string>',
otel_dump: {},
output: null,
parent_id: '<string>',
thread_id: '<string>',
turn_id: '<string>',
wb_run_id: '<string>',
wb_run_step: 123,
wb_run_step_end: 123,
wb_user_id: '<string>'
}
]
})
};
fetch('https://api.example.com/v2/{entity}/{project}/calls/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v2/{entity}/{project}/calls/complete",
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([
'batch' => [
[
'attributes' => [
],
'ended_at' => '2023-11-07T05:31:56Z',
'id' => '<string>',
'inputs' => [
],
'op_name' => '<string>',
'project_id' => '<string>',
'started_at' => '2023-11-07T05:31:56Z',
'summary' => [
'status_counts' => [
],
'usage' => [
]
],
'trace_id' => '<string>',
'display_name' => '<string>',
'exception' => '<string>',
'otel_dump' => [
],
'output' => null,
'parent_id' => '<string>',
'thread_id' => '<string>',
'turn_id' => '<string>',
'wb_run_id' => '<string>',
'wb_run_step' => 123,
'wb_run_step_end' => 123,
'wb_user_id' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v2/{entity}/{project}/calls/complete"
payload := strings.NewReader("{\n \"batch\": [\n {\n \"attributes\": {},\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"id\": \"<string>\",\n \"inputs\": {},\n \"op_name\": \"<string>\",\n \"project_id\": \"<string>\",\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"status_counts\": {},\n \"usage\": {}\n },\n \"trace_id\": \"<string>\",\n \"display_name\": \"<string>\",\n \"exception\": \"<string>\",\n \"otel_dump\": {},\n \"output\": null,\n \"parent_id\": \"<string>\",\n \"thread_id\": \"<string>\",\n \"turn_id\": \"<string>\",\n \"wb_run_id\": \"<string>\",\n \"wb_run_step\": 123,\n \"wb_run_step_end\": 123,\n \"wb_user_id\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v2/{entity}/{project}/calls/complete")
.header("Content-Type", "application/json")
.body("{\n \"batch\": [\n {\n \"attributes\": {},\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"id\": \"<string>\",\n \"inputs\": {},\n \"op_name\": \"<string>\",\n \"project_id\": \"<string>\",\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"status_counts\": {},\n \"usage\": {}\n },\n \"trace_id\": \"<string>\",\n \"display_name\": \"<string>\",\n \"exception\": \"<string>\",\n \"otel_dump\": {},\n \"output\": null,\n \"parent_id\": \"<string>\",\n \"thread_id\": \"<string>\",\n \"turn_id\": \"<string>\",\n \"wb_run_id\": \"<string>\",\n \"wb_run_step\": 123,\n \"wb_run_step_end\": 123,\n \"wb_user_id\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v2/{entity}/{project}/calls/complete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"batch\": [\n {\n \"attributes\": {},\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"id\": \"<string>\",\n \"inputs\": {},\n \"op_name\": \"<string>\",\n \"project_id\": \"<string>\",\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"status_counts\": {},\n \"usage\": {}\n },\n \"trace_id\": \"<string>\",\n \"display_name\": \"<string>\",\n \"exception\": \"<string>\",\n \"otel_dump\": {},\n \"output\": null,\n \"parent_id\": \"<string>\",\n \"thread_id\": \"<string>\",\n \"turn_id\": \"<string>\",\n \"wb_run_id\": \"<string>\",\n \"wb_run_step\": 123,\n \"wb_run_step_end\": 123,\n \"wb_user_id\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}완료된 Call 배치를 calls_complete 테이블에 직접 업서트합니다.
배치의 각 Call에는 시작 정보와 종료 정보가 모두 포함됩니다. 이 Endpoint는 Call이 클라이언트 측에서 버퍼링된 뒤 완료된 레코드로 전송될 때 사용됩니다.
POST
/
v2
/
{entity}
/
{project}
/
calls
/
complete
Call 완료
curl --request POST \
--url https://api.example.com/v2/{entity}/{project}/calls/complete \
--header 'Content-Type: application/json' \
--data '
{
"batch": [
{
"attributes": {},
"ended_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"inputs": {},
"op_name": "<string>",
"project_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"summary": {
"status_counts": {},
"usage": {}
},
"trace_id": "<string>",
"display_name": "<string>",
"exception": "<string>",
"otel_dump": {},
"output": null,
"parent_id": "<string>",
"thread_id": "<string>",
"turn_id": "<string>",
"wb_run_id": "<string>",
"wb_run_step": 123,
"wb_run_step_end": 123,
"wb_user_id": "<string>"
}
]
}
'import requests
url = "https://api.example.com/v2/{entity}/{project}/calls/complete"
payload = { "batch": [
{
"attributes": {},
"ended_at": "2023-11-07T05:31:56Z",
"id": "<string>",
"inputs": {},
"op_name": "<string>",
"project_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"summary": {
"status_counts": {},
"usage": {}
},
"trace_id": "<string>",
"display_name": "<string>",
"exception": "<string>",
"otel_dump": {},
"output": None,
"parent_id": "<string>",
"thread_id": "<string>",
"turn_id": "<string>",
"wb_run_id": "<string>",
"wb_run_step": 123,
"wb_run_step_end": 123,
"wb_user_id": "<string>"
}
] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
batch: [
{
attributes: {},
ended_at: '2023-11-07T05:31:56Z',
id: '<string>',
inputs: {},
op_name: '<string>',
project_id: '<string>',
started_at: '2023-11-07T05:31:56Z',
summary: {status_counts: {}, usage: {}},
trace_id: '<string>',
display_name: '<string>',
exception: '<string>',
otel_dump: {},
output: null,
parent_id: '<string>',
thread_id: '<string>',
turn_id: '<string>',
wb_run_id: '<string>',
wb_run_step: 123,
wb_run_step_end: 123,
wb_user_id: '<string>'
}
]
})
};
fetch('https://api.example.com/v2/{entity}/{project}/calls/complete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v2/{entity}/{project}/calls/complete",
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([
'batch' => [
[
'attributes' => [
],
'ended_at' => '2023-11-07T05:31:56Z',
'id' => '<string>',
'inputs' => [
],
'op_name' => '<string>',
'project_id' => '<string>',
'started_at' => '2023-11-07T05:31:56Z',
'summary' => [
'status_counts' => [
],
'usage' => [
]
],
'trace_id' => '<string>',
'display_name' => '<string>',
'exception' => '<string>',
'otel_dump' => [
],
'output' => null,
'parent_id' => '<string>',
'thread_id' => '<string>',
'turn_id' => '<string>',
'wb_run_id' => '<string>',
'wb_run_step' => 123,
'wb_run_step_end' => 123,
'wb_user_id' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v2/{entity}/{project}/calls/complete"
payload := strings.NewReader("{\n \"batch\": [\n {\n \"attributes\": {},\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"id\": \"<string>\",\n \"inputs\": {},\n \"op_name\": \"<string>\",\n \"project_id\": \"<string>\",\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"status_counts\": {},\n \"usage\": {}\n },\n \"trace_id\": \"<string>\",\n \"display_name\": \"<string>\",\n \"exception\": \"<string>\",\n \"otel_dump\": {},\n \"output\": null,\n \"parent_id\": \"<string>\",\n \"thread_id\": \"<string>\",\n \"turn_id\": \"<string>\",\n \"wb_run_id\": \"<string>\",\n \"wb_run_step\": 123,\n \"wb_run_step_end\": 123,\n \"wb_user_id\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
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))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v2/{entity}/{project}/calls/complete")
.header("Content-Type", "application/json")
.body("{\n \"batch\": [\n {\n \"attributes\": {},\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"id\": \"<string>\",\n \"inputs\": {},\n \"op_name\": \"<string>\",\n \"project_id\": \"<string>\",\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"status_counts\": {},\n \"usage\": {}\n },\n \"trace_id\": \"<string>\",\n \"display_name\": \"<string>\",\n \"exception\": \"<string>\",\n \"otel_dump\": {},\n \"output\": null,\n \"parent_id\": \"<string>\",\n \"thread_id\": \"<string>\",\n \"turn_id\": \"<string>\",\n \"wb_run_id\": \"<string>\",\n \"wb_run_step\": 123,\n \"wb_run_step_end\": 123,\n \"wb_user_id\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v2/{entity}/{project}/calls/complete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"batch\": [\n {\n \"attributes\": {},\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"id\": \"<string>\",\n \"inputs\": {},\n \"op_name\": \"<string>\",\n \"project_id\": \"<string>\",\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"status_counts\": {},\n \"usage\": {}\n },\n \"trace_id\": \"<string>\",\n \"display_name\": \"<string>\",\n \"exception\": \"<string>\",\n \"otel_dump\": {},\n \"output\": null,\n \"parent_id\": \"<string>\",\n \"thread_id\": \"<string>\",\n \"turn_id\": \"<string>\",\n \"wb_run_id\": \"<string>\",\n \"wb_run_step\": 123,\n \"wb_run_step_end\": 123,\n \"wb_user_id\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}⌘I