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>"
  }
}'

For users of the european region, the correct endpoint is https://backend.eu.nebuly.com/event-ingestion/api/v2/events/tags.

tags
object
required

The tags you want to set to a previously sent interaction. It’s a dictionary containing an arbitrary number of key-values tags

metadata
object
required

Metadata is required to accurately associate the tags with their corresponding interaction.