Skip to main content
POST
/
event-ingestion
/
api
/
v2
/
events
/
tags
Send 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>",
    "time_start": "<string>",
    "input": "<string>",
    "output": "<string>"
  }
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.nebuly.com/llms.txt

Use this file to discover all available pages before exploring further.

tags
object
required
A dictionary of key-value pairs representing the tags you want to add to a previously sent interaction. New tags are added, and existing tags are updated if included. Tags previously sent but not included in this payload remain unchanged.
metadata
object
required
Metadata is required to accurately associate the tags with their corresponding interaction.