Ingest Events
curl --request POST \
--url https://api.trajectory.ai/api/v1/telemetry/events \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"events": [
{
"event_id": "<string>",
"event_type": "<string>",
"timestamp": "<string>",
"session_id": "<string>",
"source": "<string>",
"user_id": "<string>",
"trajectory_id": "<string>",
"trace_id": "<string>",
"properties": {},
"metadata": {}
}
]
}
'import requests
url = "https://api.trajectory.ai/api/v1/telemetry/events"
payload = { "events": [
{
"event_id": "<string>",
"event_type": "<string>",
"timestamp": "<string>",
"session_id": "<string>",
"source": "<string>",
"user_id": "<string>",
"trajectory_id": "<string>",
"trace_id": "<string>",
"properties": {},
"metadata": {}
}
] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
events: [
{
event_id: '<string>',
event_type: '<string>',
timestamp: '<string>',
session_id: '<string>',
source: '<string>',
user_id: '<string>',
trajectory_id: '<string>',
trace_id: '<string>',
properties: {},
metadata: {}
}
]
})
};
fetch('https://api.trajectory.ai/api/v1/telemetry/events', 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.trajectory.ai/api/v1/telemetry/events",
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([
'events' => [
[
'event_id' => '<string>',
'event_type' => '<string>',
'timestamp' => '<string>',
'session_id' => '<string>',
'source' => '<string>',
'user_id' => '<string>',
'trajectory_id' => '<string>',
'trace_id' => '<string>',
'properties' => [
],
'metadata' => [
]
]
]
]),
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;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.trajectory.ai/api/v1/telemetry/events"
payload := strings.NewReader("{\n \"events\": [\n {\n \"event_id\": \"<string>\",\n \"event_type\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"session_id\": \"<string>\",\n \"source\": \"<string>\",\n \"user_id\": \"<string>\",\n \"trajectory_id\": \"<string>\",\n \"trace_id\": \"<string>\",\n \"properties\": {},\n \"metadata\": {}\n }\n ]\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))
}HttpResponse<String> response = Unirest.post("https://api.trajectory.ai/api/v1/telemetry/events")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"events\": [\n {\n \"event_id\": \"<string>\",\n \"event_type\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"session_id\": \"<string>\",\n \"source\": \"<string>\",\n \"user_id\": \"<string>\",\n \"trajectory_id\": \"<string>\",\n \"trace_id\": \"<string>\",\n \"properties\": {},\n \"metadata\": {}\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trajectory.ai/api/v1/telemetry/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"events\": [\n {\n \"event_id\": \"<string>\",\n \"event_type\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"session_id\": \"<string>\",\n \"source\": \"<string>\",\n \"user_id\": \"<string>\",\n \"trajectory_id\": \"<string>\",\n \"trace_id\": \"<string>\",\n \"properties\": {},\n \"metadata\": {}\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"ingested": 123,
"skipped": 0,
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
}{
"ingested": 123,
"skipped": 0,
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
}{
"error": {
"type": "invalid_request_error",
"code": "invalid_telemetry_event",
"message": "<string>",
"doc_url": "<string>",
"context": {
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
},
"param": "<string>"
}
}{
"error": {
"type": "api_error",
"code": "telemetry_ingestion_failed",
"message": "<string>",
"doc_url": "<string>",
"context": {
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
},
"param": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"context": {},
"param": "<string>"
}
}telemetry
Ingest Events
POST
/
api
/
v1
/
telemetry
/
events
Ingest Events
curl --request POST \
--url https://api.trajectory.ai/api/v1/telemetry/events \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"events": [
{
"event_id": "<string>",
"event_type": "<string>",
"timestamp": "<string>",
"session_id": "<string>",
"source": "<string>",
"user_id": "<string>",
"trajectory_id": "<string>",
"trace_id": "<string>",
"properties": {},
"metadata": {}
}
]
}
'import requests
url = "https://api.trajectory.ai/api/v1/telemetry/events"
payload = { "events": [
{
"event_id": "<string>",
"event_type": "<string>",
"timestamp": "<string>",
"session_id": "<string>",
"source": "<string>",
"user_id": "<string>",
"trajectory_id": "<string>",
"trace_id": "<string>",
"properties": {},
"metadata": {}
}
] }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
events: [
{
event_id: '<string>',
event_type: '<string>',
timestamp: '<string>',
session_id: '<string>',
source: '<string>',
user_id: '<string>',
trajectory_id: '<string>',
trace_id: '<string>',
properties: {},
metadata: {}
}
]
})
};
fetch('https://api.trajectory.ai/api/v1/telemetry/events', 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.trajectory.ai/api/v1/telemetry/events",
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([
'events' => [
[
'event_id' => '<string>',
'event_type' => '<string>',
'timestamp' => '<string>',
'session_id' => '<string>',
'source' => '<string>',
'user_id' => '<string>',
'trajectory_id' => '<string>',
'trace_id' => '<string>',
'properties' => [
],
'metadata' => [
]
]
]
]),
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;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.trajectory.ai/api/v1/telemetry/events"
payload := strings.NewReader("{\n \"events\": [\n {\n \"event_id\": \"<string>\",\n \"event_type\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"session_id\": \"<string>\",\n \"source\": \"<string>\",\n \"user_id\": \"<string>\",\n \"trajectory_id\": \"<string>\",\n \"trace_id\": \"<string>\",\n \"properties\": {},\n \"metadata\": {}\n }\n ]\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))
}HttpResponse<String> response = Unirest.post("https://api.trajectory.ai/api/v1/telemetry/events")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"events\": [\n {\n \"event_id\": \"<string>\",\n \"event_type\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"session_id\": \"<string>\",\n \"source\": \"<string>\",\n \"user_id\": \"<string>\",\n \"trajectory_id\": \"<string>\",\n \"trace_id\": \"<string>\",\n \"properties\": {},\n \"metadata\": {}\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trajectory.ai/api/v1/telemetry/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"events\": [\n {\n \"event_id\": \"<string>\",\n \"event_type\": \"<string>\",\n \"timestamp\": \"<string>\",\n \"session_id\": \"<string>\",\n \"source\": \"<string>\",\n \"user_id\": \"<string>\",\n \"trajectory_id\": \"<string>\",\n \"trace_id\": \"<string>\",\n \"properties\": {},\n \"metadata\": {}\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"ingested": 123,
"skipped": 0,
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
}{
"ingested": 123,
"skipped": 0,
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
}{
"error": {
"type": "invalid_request_error",
"code": "invalid_telemetry_event",
"message": "<string>",
"doc_url": "<string>",
"context": {
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
},
"param": "<string>"
}
}{
"error": {
"type": "api_error",
"code": "telemetry_ingestion_failed",
"message": "<string>",
"doc_url": "<string>",
"context": {
"failures": [
{
"code": "<string>",
"message": "<string>",
"item_index": 123,
"context": {}
}
]
},
"param": "<string>"
}
}{
"error": {
"type": "invalid_request_error",
"code": "<string>",
"message": "<string>",
"doc_url": "<string>",
"context": {},
"param": "<string>"
}
}Authorizations
Organization API key
Body
application/json
Telemetry events to ingest. A single event object may also be sent directly.
Maximum array length:
100000Show child attributes
Show child attributes
⌘I