Call End
curl --request POST \
--url https://api.example.com/call/end \
--header 'Content-Type: application/json' \
--data '
{
"end": {
"project_id": "<string>",
"id": "<string>",
"ended_at": "2023-11-07T05:31:56Z",
"summary": {
"usage": {},
"status_counts": {}
},
"trace_id": "<string>",
"is_eval": true,
"started_at": "2023-11-07T05:31:56Z",
"exception": "<string>",
"output": null,
"wb_run_step_end": 123
}
}
'import requests
url = "https://api.example.com/call/end"
payload = { "end": {
"project_id": "<string>",
"id": "<string>",
"ended_at": "2023-11-07T05:31:56Z",
"summary": {
"usage": {},
"status_counts": {}
},
"trace_id": "<string>",
"is_eval": True,
"started_at": "2023-11-07T05:31:56Z",
"exception": "<string>",
"output": None,
"wb_run_step_end": 123
} }
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({
end: {
project_id: '<string>',
id: '<string>',
ended_at: '2023-11-07T05:31:56Z',
summary: {usage: {}, status_counts: {}},
trace_id: '<string>',
is_eval: true,
started_at: '2023-11-07T05:31:56Z',
exception: '<string>',
output: null,
wb_run_step_end: 123
}
})
};
fetch('https://api.example.com/call/end', 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/call/end",
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([
'end' => [
'project_id' => '<string>',
'id' => '<string>',
'ended_at' => '2023-11-07T05:31:56Z',
'summary' => [
'usage' => [
],
'status_counts' => [
]
],
'trace_id' => '<string>',
'is_eval' => true,
'started_at' => '2023-11-07T05:31:56Z',
'exception' => '<string>',
'output' => null,
'wb_run_step_end' => 123
]
]),
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/call/end"
payload := strings.NewReader("{\n \"end\": {\n \"project_id\": \"<string>\",\n \"id\": \"<string>\",\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"usage\": {},\n \"status_counts\": {}\n },\n \"trace_id\": \"<string>\",\n \"is_eval\": true,\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"exception\": \"<string>\",\n \"output\": null,\n \"wb_run_step_end\": 123\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/call/end")
.header("Content-Type", "application/json")
.body("{\n \"end\": {\n \"project_id\": \"<string>\",\n \"id\": \"<string>\",\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"usage\": {},\n \"status_counts\": {}\n },\n \"trace_id\": \"<string>\",\n \"is_eval\": true,\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"exception\": \"<string>\",\n \"output\": null,\n \"wb_run_step_end\": 123\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/call/end")
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 \"end\": {\n \"project_id\": \"<string>\",\n \"id\": \"<string>\",\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"usage\": {},\n \"status_counts\": {}\n },\n \"trace_id\": \"<string>\",\n \"is_eval\": true,\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"exception\": \"<string>\",\n \"output\": null,\n \"wb_run_step_end\": 123\n }\n}"
response = http.request(request)
puts response.read_body{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Call End
POST
/
call
/
end
Call End
curl --request POST \
--url https://api.example.com/call/end \
--header 'Content-Type: application/json' \
--data '
{
"end": {
"project_id": "<string>",
"id": "<string>",
"ended_at": "2023-11-07T05:31:56Z",
"summary": {
"usage": {},
"status_counts": {}
},
"trace_id": "<string>",
"is_eval": true,
"started_at": "2023-11-07T05:31:56Z",
"exception": "<string>",
"output": null,
"wb_run_step_end": 123
}
}
'import requests
url = "https://api.example.com/call/end"
payload = { "end": {
"project_id": "<string>",
"id": "<string>",
"ended_at": "2023-11-07T05:31:56Z",
"summary": {
"usage": {},
"status_counts": {}
},
"trace_id": "<string>",
"is_eval": True,
"started_at": "2023-11-07T05:31:56Z",
"exception": "<string>",
"output": None,
"wb_run_step_end": 123
} }
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({
end: {
project_id: '<string>',
id: '<string>',
ended_at: '2023-11-07T05:31:56Z',
summary: {usage: {}, status_counts: {}},
trace_id: '<string>',
is_eval: true,
started_at: '2023-11-07T05:31:56Z',
exception: '<string>',
output: null,
wb_run_step_end: 123
}
})
};
fetch('https://api.example.com/call/end', 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/call/end",
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([
'end' => [
'project_id' => '<string>',
'id' => '<string>',
'ended_at' => '2023-11-07T05:31:56Z',
'summary' => [
'usage' => [
],
'status_counts' => [
]
],
'trace_id' => '<string>',
'is_eval' => true,
'started_at' => '2023-11-07T05:31:56Z',
'exception' => '<string>',
'output' => null,
'wb_run_step_end' => 123
]
]),
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/call/end"
payload := strings.NewReader("{\n \"end\": {\n \"project_id\": \"<string>\",\n \"id\": \"<string>\",\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"usage\": {},\n \"status_counts\": {}\n },\n \"trace_id\": \"<string>\",\n \"is_eval\": true,\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"exception\": \"<string>\",\n \"output\": null,\n \"wb_run_step_end\": 123\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/call/end")
.header("Content-Type", "application/json")
.body("{\n \"end\": {\n \"project_id\": \"<string>\",\n \"id\": \"<string>\",\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"usage\": {},\n \"status_counts\": {}\n },\n \"trace_id\": \"<string>\",\n \"is_eval\": true,\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"exception\": \"<string>\",\n \"output\": null,\n \"wb_run_step_end\": 123\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/call/end")
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 \"end\": {\n \"project_id\": \"<string>\",\n \"id\": \"<string>\",\n \"ended_at\": \"2023-11-07T05:31:56Z\",\n \"summary\": {\n \"usage\": {},\n \"status_counts\": {}\n },\n \"trace_id\": \"<string>\",\n \"is_eval\": true,\n \"started_at\": \"2023-11-07T05:31:56Z\",\n \"exception\": \"<string>\",\n \"output\": null,\n \"wb_run_step_end\": 123\n }\n}"
response = http.request(request)
puts response.read_body{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Body
application/json
Show child attributes
Show child attributes
Response
Successful Response
The response is of type CallEndRes · object.
Was this page helpful?
⌘I