Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt

Use this file to discover all available pages before exploring further.

The Pagerduty plugin syncs data locally. Use corsair.pagerduty.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Incidents

Path: pagerduty.db.incidents.search
const rows = await corsair.pagerduty.db.incidents.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
incident_numbernumberequals, gt, gte, lt, lte, in
titlestringequals, contains, startsWith, endsWith, in
html_urlstringequals, contains, startsWith, endsWith, in
created_atdateequals, before, after, between
updated_atdateequals, before, after, between
resolved_atdateequals, before, after, between
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.