Delinea EventPipeline API

EventPipelineController

Operations 9

GET /v1/event-pipeline/{id} Get an Event Pipeline #
PUT /v1/event-pipeline/{id} Update an Event Pipeline #
GET /v1/event-pipeline/list Get a list of Event Pipelines #
GET /v1/event-pipeline/summaries Get summaries of Event Pipelines #
GET /v1/event-pipeline/stub Stub an empty Event Pipeline #
GET /v1/event-pipeline/runs Get Event Pipeline Runs #
POST /v1/event-pipeline Create a new Event Pipeline #
PUT /v1/event-pipeline/{id}/order Reorder an Event Pipeline #
PUT /v1/event-pipeline/{id}/activate Update an Event Pipeline active value #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/delinea-eventpipeline-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

delinea-eventpipeline-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Secret Server Rest Activations Event Pipeline API
  description: REST API documentation for Secret Server. This document describes how to use the REST API. All requests require an authentication token; please see the <a href="../OAuth/">authentication document</a> for more information. The <a href="swagger.json">Swagger specification</a> for this API is also available.
  termsOfService: https://delinea.com/eula
  contact:
    name: Support
    url: https://delinea.com
  version: 11.7.2
servers:
- url: /SecretServer/api
security:
- BearerToken: []
tags:
- name: EventPipeline
  description: EventPipelineController
paths:
  /v1/event-pipeline/{id}:
    get:
      tags:
      - EventPipeline
      summary: Get an Event Pipeline
      description: Returns the Event Pipeline for the provided ID
      operationId: EventPipelineService_GetEventPipeline
      parameters:
      - name: id
        in: path
        description: Event Pipeline ID
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The Event Pipeline View
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventPipelineModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
    put:
      tags:
      - EventPipeline
      summary: Update an Event Pipeline
      description: Update an existing Event Pipeline using the existing Event Pipeline's ID
      operationId: EventPipelineService_UpdateEventPipelines
      parameters:
      - name: id
        in: path
        description: Event Pipeline ID
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventPipelineUpdateArgs'
        description: args
      responses:
        '200':
          description: The updated Event Pipeline
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventPipelineModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline/list:
    get:
      tags:
      - EventPipeline
      summary: Get a list of Event Pipelines
      description: Returns a list of Event Pipelines that meet the paging/searching criterea
      operationId: EventPipelineService_GetEventPipelines
      parameters:
      - name: filter.eventEntityTypeId
        in: query
        description: EventEntityTypeId
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.eventPipelineName
        in: query
        description: EventPipelineName
        required: false
        schema:
          type: string
      - name: filter.eventPipelinePolicyId
        in: query
        description: EventPipelinePolicyId
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.includeActive
        in: query
        description: IncludeActive
        required: false
        x-nullable: true
        schema:
          type: boolean
      - name: filter.includeInactive
        in: query
        description: IncludeInactive
        required: false
        x-nullable: true
        schema:
          type: boolean
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The list of Event Pipelines
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfEventPipelineViewModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline/summaries:
    get:
      tags:
      - EventPipeline
      summary: Get summaries of Event Pipelines
      description: Returns a list of Event Pipeline summaries that meet the searching criterea
      operationId: EventPipelineService_GetEventPipelineSummaries
      parameters:
      - name: filter.eventEntityTypeId
        in: query
        description: EventEntityTypeId
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.eventPipelineName
        in: query
        description: EventPipelineName
        required: false
        schema:
          type: string
      - name: filter.eventPipelinePolicyId
        in: query
        description: EventPipelinePolicyId
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.includeActive
        in: query
        description: IncludeActive
        required: false
        x-nullable: true
        schema:
          type: boolean
      - name: filter.includeInactive
        in: query
        description: IncludeInactive
        required: false
        x-nullable: true
        schema:
          type: boolean
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The summaries of Event Pipelines
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfEventPipelineSummaryModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline/stub:
    get:
      tags:
      - EventPipeline
      summary: Stub an empty Event Pipeline
      description: Returns an empty Event Pipeline to be filled out.
      operationId: EventPipelineService_GetEventPipelineStub
      responses:
        '200':
          description: An empty Event Pipeline
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventPipeline'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline/runs:
    get:
      tags:
      - EventPipeline
      summary: Get Event Pipeline Runs
      description: Get all of the runs for a specific pipeline
      operationId: EventPipelineService_GetEventPipelineRuns
      parameters:
      - name: filter.eventPipelineId
        in: query
        description: EventPipelineId
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.eventPipelinePolicyRunId
        in: query
        description: EventPipelinePolicyRunId
        required: false
        x-nullable: true
        schema:
          type: string
          format: uuid
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Paged list of pipeline runs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfEventPipelineRunViewModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline:
    post:
      tags:
      - EventPipeline
      summary: Create a new Event Pipeline
      description: Creates a new Event Pipeline with the provided object.
      operationId: EventPipelineService_CreateEventPipelines
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventPipelineCreateArgs'
        description: args
      responses:
        '200':
          description: The new Event Pipeline
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventPipelineModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline/{id}/order:
    put:
      tags:
      - EventPipeline
      summary: Reorder an Event Pipeline
      description: Reorder an existing Event Pipeline in a policy
      operationId: EventPipelineService_ReorderPipeline
      parameters:
      - name: id
        in: path
        description: Event Pipeline Id
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventPipelineOrderUpdateArgs'
        description: args
      responses:
        '200':
          description: Event Pipeline Policy Map
          content:
            application/json:
              schema:
                description: Event Pipeline Policy Map
                items:
                  $ref: '#/components/schemas/EventPipelinePolicyMap'
                type: array
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/event-pipeline/{id}/activate:
    put:
      tags:
      - EventPipeline
      summary: Update an Event Pipeline active value
      description: Sets if an Event Pipeline is active or not
      operationId: EventPipelineService_TogglePipelineActive
      parameters:
      - name: id
        in: path
        description: Event Pipeline Id
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventPipelineActivateUpdateArgs'
        description: args
      responses:
        '200':
          description: The Active value
          content:
            application/json:
              schema:
                description: Boolean
                type: boolean
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
components:
  schemas:
    SettingUpdateModel:
      description: Value
      properties:
        settingName:
          $ref: '#/components/schemas/UpdateFieldValueOfString'
        settingValue:
          $ref: '#/components/schemas/UpdateFieldValueOfString'
      type: object
    EventPipelineTaskMapUpdateModel:
      description: Value
      properties:
        eventPipelineTaskId:
          $ref: '#/components/schemas/UpdateFieldValueOfInt32'
        eventPipelineTaskMapId:
          $ref: '#/components/schemas/UpdateFieldValueOfOptionalInt32'
        eventPipelineTaskName:
          $ref: '#/components/schemas/UpdateFieldValueOfString'
        settings:
          $ref: '#/components/schemas/UpdateFieldValueOfSettingUpdateModelArray'
        sortOrder:
          $ref: '#/components/schemas/UpdateFieldValueOfInt32'
      type: object
    EventPipeline:
      description: EventPipeline
      properties:
        active:
          description: Active
          type: boolean
        createdDate:
          description: CreatedDate
          type: string
          format: date-time
        eventEntityTypeId:
          description: EventEntityTypeId
          type: integer
          format: int32
        eventPipelineDescription:
          description: EventPipelineDescription
          type: string
        eventPipelineId:
          description: EventPipelineId
          type: integer
          format: int32
        eventPipelineName:
          description: EventPipelineName
          type: string
        eventPipelinePolicyId:
          description: EventPipelinePolicyId
          type: integer
          format: int32
        isSystem:
          description: IsSystem
          type: boolean
        lastModifiedDate:
          description: LastModifiedDate
          type: string
          format: date-time
        lastModifiedUser:
          description: LastModifiedUser
          type: string
        lastModifiedUserId:
          description: LastModifiedUserId
          type: integer
          format: int32
        sortOrder:
          description: SortOrder
          type: integer
          format: int32
      type: object
    ViewFieldValueReadOnlyOfEventPipelineFilterSettingValueMapViewModelArray:
      description: Settings
      properties:
        additionalLinks:
          description: AdditionalLinks
          items:
            $ref: '#/components/schemas/ViewFieldLink'
          type: array
        description:
          description: Description
          type: string
        fieldInputType:
          description: FieldInputType
          type:
          - string
          - 'null'
        hasHistory:
          description: HasHistory
          type:
          - boolean
          - 'null'
        helpLink:
          description: HelpLink
          type: string
        helpLinkText:
          description: HelpLinkText
          type: string
        hidden:
          description: Hidden
          type:
          - boolean
          - 'null'
        hideOnView:
          description: HideOnView
          type:
          - boolean
          - 'null'
        isRequired:
          description: IsRequired
          type:
          - boolean
          - 'null'
        label:
          description: Label
          type: string
        maxLength:
          description: MaxLength
          type:
          - integer
          - 'null'
          format: int32
        name:
          description: Name
          type: string
        placeholder:
          description: Placeholder
          type: string
        readOnly:
          description: ReadOnly
          type:
          - boolean
          - 'null'
        readOnlyReason:
          description: ReadOnlyReason
          type: string
        sortOrder:
          description: SortOrder
          type:
          - integer
          - 'null'
          format: int32
        value:
          description: Value
          items:
            $ref: '#/components/schemas/EventPipelineFilterSettingValueMapViewModel'
          type: array
      type: object
    EventPipelineModel:
      description: Event Pipeline
      properties:
        active:
          description: Active
          type: boolean
        createdDate:
          description: Event Pipeline Created Date
          type: string
          format: date-time
        eventEntityTypeId:
          description: Entity Type Id
          type: integer
          format: int32
        eventPipelineDescription:
          description: Event Pipeline Description
          type: string
        eventPipelineId:
          description: Event Pipeline Id
          type: integer
          format: int32
        eventPipelineName:
          description: Event Pipeline Name
          type: string
        eventPipelinePolicyId:
          description: Event Pipeline Policy Id
          type:
          - integer
          - 'null'
          format: int32
        eventPipelinePolicyMapId:
          description: Event Pipeline Policy Map Id
          type:
          - integer
          - 'null'
          format: int32
        filterList:
          description: Event Pipeline Filters
          items:
            $ref: '#/components/schemas/EventPipelineFilterModel'
          type: array
        isSystem:
          description: Event pipeline used by the system
          type: boolean
        lastModifiedDate:
          description: Event Pipeline Modified Date
          type: string
          format: date-time
        lastModifiedDisplayName:
          description: Event Pipeline Last Modified Date
          type: string
        sortOrder:
          description: Sort Order
          type: integer
          format: int32
        taskList:
          description: Event Pipeline Tasks
          items:
            $ref: '#/components/schemas/EventPipelineTaskModel'
          type: array
        triggers:
          description: Event Pipeline Triggers
          items:
            $ref: '#/components/schemas/EventPipelineTriggerModel'
          type: array
      type: object
    EventPipelineTaskSettingValueMapViewModel:
      description: Value
      properties:
        eventPipelineTaskMapId:
          $ref: '#/components/schemas/ViewFieldValueOfInt32'
        eventPipelineTaskSettingValueMapId:
          $ref: '#/components/schemas/ViewFieldValueReadOnlyOfOptionalInt32'
        overrideDefault:
          $ref: '#/components/schemas/ViewFieldValueOfBoolean'
        setting:
          $ref: '#/components/schemas/ViewFieldValueOfSettingForDisplay'
        settingDisplay:
          $ref: '#/components/schemas/ViewFieldValueReadOnlyOfString'
        settingDisplayValue:
          description: SettingDisplayValue
          type: string
        settingId:
          $ref: '#/components/schemas/ViewFieldValueOfInt32'
        settingValue:
          $ref: '#/components/schemas/ViewFieldValueOfString'
        usingDefault:
          $ref: '#/components/schemas/ViewFieldValueOfBoolean'
      type: object
    ViewFieldValueReadOnlyOfInt32:
      description: ID of the mapping between the Tenant and Secret.
      properties:
        additionalLinks:
          description: AdditionalLinks
          items:
            $ref: '#/components/schemas/ViewFieldLink'
          type: array
        description:
          description: Description
          type: string
        fieldInputType:
          description: FieldInputType
          type:
          - string
          - 'null'
        hasHistory:
          description: HasHistory
          type:
          - boolean
          - 'null'
        helpLink:
          description: HelpLink
          type: string
        helpLinkText:
          description: HelpLinkText
          type: string
        hidden:
          description: Hidden
          type:
          - boolean
          - 'null'
        hideOnView:
          description: HideOnView
          type:
          - boolean
          - 'null'
        isRequired:
          description: IsRequired
          type:
          - boolean
          - 'null'
        label:
          description: Label
          type: string
        maxLength:
          description: MaxLength
          type:
          - integer
          - 'null'
          format: int32
        name:
          description: Name
          type: string
        placeholder:
          description: Placeholder
          type: string
        readOnly:
          description: ReadOnly
          type:
          - boolean
          - 'null'
        readOnlyReason:
          description: ReadOnlyReason
          type: string
        sortOrder:
          description: SortOrder
          type:
          - integer
          - 'null'
          format: int32
        value:
          description: Value
          type: integer
          format: int32
      type: object
    ViewFieldValueReadOnlyOfDateTime:
      description: When the Secret was originally mapped to the Tenant.
      properties:
        additionalLinks:
          description: AdditionalLinks
          items:
            $ref: '#/components/schemas/ViewFieldLink'
          type: array
        description:
          description: Description
          type: string
        fieldInputType:
          description: FieldInputType
          type:
          - string
          - 'null'
        hasHistory:
          description: HasHistory
          type:
          - boolean
          - 'null'
        helpLink:
          description: HelpLink
          type: string
        helpLinkText:
          description: HelpLinkText
          type: string
        hidden:
          description: Hidden
          type:
          - boolean
          - 'null'
        hideOnView:
          description: HideOnView
          type:
          - boolean
          - 'null'
        isRequired:
          description: IsRequired
          type:
          - boolean
          - 'null'
        label:
          description: Label
          type: string
        maxLength:
          description: MaxLength
          type:
          - integer
          - 'null'
          format: int32
        name:
          description: Name
          type: string
        placeholder:
          description: Placeholder
          type: string
        readOnly:
          description: ReadOnly
          type:
          - boolean
          - 'null'
        readOnlyReason:
          description: ReadOnlyReason
          type: string
        sortOrder:
          description: SortOrder
          type:
          - integer
          - 'null'
          format: int32
        value:
          description: Value
          type: string
          format: date-time
      type: object
    Setting:
      description: ChildSettings
      properties:
        active:
          description: Active
          type: boolean
        canEdit:
          description: CanEdit
          type: boolean
        canEditValue:
          description: CanEditValue
          type: boolean
        childLoadSQL:
          description: ChildLoadSQL
          type: string
        defaultValue:
          description: DefaultValue
          type: string
        isVisible:
          description: IsVisible
          type: boolean
        nameLocalizeKey:
          description: NameLocalizeKey
          type: string
        parentSettingId:
          description: ParentSettingId
          type:
          - integer
          - 'null'
          format: int32
        regexValidation:
          description: RegexValidation
          type: string
        settingId:
          description: SettingId
          type: integer
          format: int32
        settingName:
          description: SettingName
          type: string
        settingSectionId:
          description: SettingSectionId
          type: integer
          format: int32
        settingType:
          $ref: '#/components/schemas/SettingType'
        sortOrder:
          description: SortOrder
          type: integer
          format: int32
        subSettingSectionId:
          description: SubSettingSectionId
          type:
          - integer
          - 'null'
          format: int32
        tooltipLocalizeKey:
          description: TooltipLocalizeKey
          type: string
      type: object
    Severity:
      description: Error severity level
      properties: {}
      type: string
      enum:
      - None
      - Retry
      - Warn
      - Critical
      - Fatal
    UpdateFieldValueOfEventPipelineTaskMapUpdateModelArray:
      description: Tasks
      properties:
        dirty:
          description: Dirty
          type: boolean
        value:
          description: Value
          items:
            $ref: '#/components/schemas/EventPipelineTaskMapUpdateModel'
          type: array
      type: object
    PagingOfEventPipelineSummaryModel:
      description: Specify paging and sorting options for querying records and returning results
      properties:
        batchCount:
          description: Number of result batches available with current query options
          type: integer
          format: int32
        currentPage:
          description: Index of current result page
          type: integer
          format: int32
        hasNext:
          description: Whether there are any results in additional pages
          type: boolean
        hasPrev:
          description: Whether there are any results in previous pages
          type: boolean
        nextSkip:
          description: Correct value of 'skip' for the next page of results
          type: integer
          format: int32
        pageCount:
          description: Number of result pages available with current query options
          type: integer
          format: int32
        prevSkip:
          description: Correct value of 'skip' for the previous page of results
          type: integer
          format: int32
        records:
          description: Query results
          items:
            $ref: '#/components/schemas/EventPipelineSummaryModel'
          type: array
        severity:
          $ref: '#/components/schemas/Severity'
        skip:
          description: Number of records to skip before taking results
          type: integer
          format: int32
        sortBy:
          description: List of sort properties
          items:
            $ref: '#/components/schemas/Sort'
          type: array
        success:
          description: Whether the query executed successfully
          type: boolean
        take:
          description: Maximum number of records to include in results
          type: integer
          format: int32
        total:
          description: Total number of results available
          type: integer
          format: int32
      type: object
    EventPipelineOrderUpdateModel:
      description: Data
      properties:
        eventPipelinePolicyId:
          description: EventPipelinePolicyId
          type: integer
          format: int32
        sortOrder:
          $ref: '#/components/schemas/UpdateFieldValueOfInt32'
      type: object
    EventPipelinePolicyMap:
      description: EventPipelinePolicyMap[]
      properties:
        eventPipelineId:
          description: EventPipelineId
          type: integer
          format: int32
        eventPipelinePolicyId:
          description: EventPipelinePolicyId
          type: integer
          format: int32
        eventPipelinePolicyMapId:
          description: EventPipelinePolicyMapId
          type: integer
          format: int32
        sortOrder:
          description: SortOrder
          type: integer
          format: int32
      type: object
    EventPipelineTriggerUpdateModel:
      description: Value
      properties:
        event

# --- truncated at 32 KB (74 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/delinea/refs/heads/main/openapi/delinea-eventpipeline-api-openapi.yml