API Reference
Send Tags
API Reference
Send Tags
POST
/
event-ingestion
/
api
/
v2
/
events
/
tags
curl --request POST \
--url https://backend.nebuly.com/event-ingestion/api/v2/events/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"tags": {
"tag1": "<string>",
"tag2": "<string>"
},
"metadata": {
"end_user": "<string>",
"timestamp": "<string>",
"input": "<string>",
"output": "<string>"
}
}'
Metadata is required to accurately associate the tags with their corresponding interaction.
The identifier used for the end-user of the corresponding interaction
The timestamp (time_start) of the corrisponding interaction.
The input of the interactions to which the tags refers to. If not given the interaction will be determined using the interaction time-stamp and the end-user id.
The output of the interactions to which the tags refers to. If not given the interaction will be determined using the interaction time-stamp and the end-user id.
curl --request POST \
--url https://backend.nebuly.com/event-ingestion/api/v2/events/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"tags": {
"tag1": "<string>",
"tag2": "<string>"
},
"metadata": {
"end_user": "<string>",
"timestamp": "<string>",
"input": "<string>",
"output": "<string>"
}
}'