Alpha Optional contextFilter by related LimeObject.
Use this to find problems linked to a specific limetype or object instance.
Optional limitMaximum number of problems to return.
Used for pagination. When omitted, the provider decides the default limit.
Optional offsetNumber of problems to skip before returning results.
Used for pagination in combination with limit. For example, to get
the second page of 20 items, use { limit: 20, offset: 20 }.
Optional severityFilter by severity level(s).
When a single value is provided, returns problems with that severity. When an array is provided, returns problems matching any of the severities.
Optional statusFilter by status(es).
Status values are provider-defined strings. When a single value is provided, returns problems with that status. When an array is provided, returns problems matching any of the statuses.
Optional tagsOptional typeFilter by problem type(s).
Types are provider-specific strings like 'email.delivery-failed' or 'sync.connection-error'. When an array is provided, returns problems matching any of the types.
Optional user
Options for querying problems from a ProblemProvider.
All filter properties are optional. Providers handle what they support and silently ignore unsupported filters. This allows the platform to pass a consistent set of filters without needing to know each provider's capabilities.
Multiple values can be provided for most filters (severity, status, type, tags) to match problems that have any of the specified values (OR logic).
Example
Get all open problems
Example
Get high-priority unresolved problems with pagination
Example
Get problems for a specific type and user
Example
Get problems related to a specific limeobject
See