Skip to main content
Monitoring & Collection/Logging
GETLoggingSince 1.0SynchronousAuth Required

ListTailPresets

List saved filter presets for a user or tenant with optional scope filter

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Query Parameters

Request Inputs

Query Parameters

  • userUuidString

    UUID of the user whose presets to list UUID of the user whose presets to list

  • tenantIdString

    Tenant identifier to list presets within Tenant identifier to list presets within

  • scopeString

    Scope filter: "personal", "shared", or "all" Scope filter: "personal", "shared", or "all"

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

    • idString

      Unique identifier of this filter preset

      Example: preset-001

    • nameString

      Human-readable name of the filter preset

      Example: Production Errors

    • userUuidString

      UUID of the user who owns this preset

      Example: user-001-abc

    • tenantIdString

      Tenant identifier for multi-tenant preset ownership

      Example: tenant-xyz

    • filterObject

      Filter for this resource

      • includeKeywordsList

        Include keywords

        Example: item1,item2

      • excludeKeywordsList

        Exclude keywords

        Example: item1,item2

      • regexString

        Regular expression pattern to match against log message content

        Example: error.*timeout

      • logLevelMinString

        Minimum log level to include; entries below this level are excluded

        Example: warn

      • serviceFilterString

        Service name filter to restrict matching to a specific service

        Example: payment-service

    • isSharedBoolean

      Whether this preset is shared with all users in the tenant

      Example: false

    • createdAtString

      Created at

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of presets matching the query

    Example: 5

  • limitInteger

    Maximum number of items per page

    Example: 20

  • offsetInteger

    Zero-based offset of the current page

    Example: 20

Endpoint

GET/api/v1/logs/tail/presets

/api/v1/logs/tail/presets

Operation ID

ListTailPresets

Permalink

Request Example

curl -X GET '{host}/api/v1/logs/tail/presets' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 5,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history