Skip to main content

Bulk update event catalog request

updates object[]required

The set of event catalog updates to apply.

  • Array [
  • event_name_pathstringrequired

    Identifier of the event of the form source_table.event_name. Use a backslash (\) to escape . characters appearing inside the event name.

    Example: events.page_view
    display_namestringrequired

    New display name. Must be non-empty and unique within the project.

    Example: Page view
    descriptionstringrequired

    New description. Pass an empty string to clear the description.

    Example: Tracks every page navigation in the app.
  • ]
  • Bulk update event catalog request
    {
    "updates": [
    {
    "event_name_path": "events.page_view",
    "display_name": "Page view",
    "description": "Tracks every page navigation in the app."
    }
    ]
    }