v1

latestOpenAPI 3.0.22026-07-144652931.4 MB
Enrichment Schemas

List enrichment records

Retrieves a page of enrichment records for a schema. Results are cursor-paginated.

<!-- theme: warning -->

Early Access

This API is in Early Access and may change at any time. Contact your PagerDuty account team to request access.

Scoped OAuth requires: contextual_data.read

get/enrichment/schemas/{schema_id}/records

Path parameters

schema_idstring uuid required

The ID of the enrichment schema.

Query parameters

limitinteger

The maximum number of records to return per page (1-100).

cursorstring

Pagination cursor returned by a previous list request.

Headers

Acceptstring required

The Accept header is used as a versioning header.

Response

A page of enrichment records for the schema.

schema_idstring uuid

The schema the records belong to.

next_cursorstring nullable

Cursor for fetching the next page, or null if there are no more pages.

Example response

{
  "records": [
    {
      "type": "enrichment_record"
    }
  ]
}