nevent_list_short_urls
List all short URLs for the current tenant with their tracking metrics (click count, last clicked). Use to discover existing campaign links or to audit active tracking URLs. Returns items (array of ShortUrlDTO), total, page, pageSize, totalPages. Key fields per item: id (use with nevent_get_short_url_metrics or nevent_get_short_url_clicks), shortCode (use with nevent_get_short_url_campaign_metrics or nevent_list_short_url_user_links), shortUrl, longUrl, title, tags, clickCount, isActive, isParent. Filter by isActive=true for active links only. Use search to filter by title or URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Zero-based page number for pagination. Default: 0 (first page). | |
| search | No | Free-text search across short code, title, and target URL. E.g. "summer" to find links tagged or titled with that word. | |
| isActive | No | Filter by active status. true = only active links, false = only inactive/expired links. Omit to return both. | |
| pageSize | No | Number of results per page. Default: 20. Max: 200. |