Envestnet · Capability

Envestnet Verification APIs — Configs

Envestnet Verification APIs — Configs. 4 operations. Lead operation: Envestnet Get Subscribed Notification Events. Self-contained Naftiko capability covering one Envestnet business surface.

Run with Naftiko EnvestnetConfigs

What You Can Do

GET
Getsubscribednotificationevents — Envestnet Get Subscribed Notification Events
/v1/configs/notifications/events
PUT
Updatesubscribednotificationevent — Envestnet Update Notification Subscription
/v1/configs/notifications/events/{eventname}
POST
Createsubscriptionnotificationevent — Envestnet Subscribe For Notification Event
/v1/configs/notifications/events/{eventname}
DELETE
Deletesubscribednotificationevent — Envestnet Delete Notification Subscription
/v1/configs/notifications/events/{eventname}

MCP Tools

envestnet-get-subscribed-notification-events

Envestnet Get Subscribed Notification Events

read-only idempotent
envestnet-update-notification-subscription

Envestnet Update Notification Subscription

idempotent
envestnet-subscribe-notification-event

Envestnet Subscribe For Notification Event

envestnet-delete-notification-subscription

Envestnet Delete Notification Subscription

idempotent

Capability Spec

verification-configs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Envestnet Verification APIs — Configs
  description: 'Envestnet Verification APIs — Configs. 4 operations. Lead operation: Envestnet Get Subscribed Notification
    Events. Self-contained Naftiko capability covering one Envestnet business surface.'
  tags:
  - Envestnet
  - Configs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ENVESTNET_API_KEY: ENVESTNET_API_KEY
capability:
  consumes:
  - type: http
    namespace: verification-configs
    baseUri: ''
    description: Envestnet Verification APIs — Configs business capability. Self-contained, no shared references.
    resources:
    - name: configs-notifications-events
      path: /configs/notifications/events
      operations:
      - name: getsubscribednotificationevents
        method: GET
        description: Envestnet Get Subscribed Notification Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: eventName
          in: query
          type: string
          description: Name of the webhook subscription event
    - name: configs-notifications-events-eventName
      path: /configs/notifications/events/{eventName}
      operations:
      - name: updatesubscribednotificationevent
        method: PUT
        description: Envestnet Update Notification Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: eventName
          in: path
          type: string
          description: Name of the webhook subscription event
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: createsubscriptionnotificationevent
        method: POST
        description: Envestnet Subscribe For Notification Event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: eventName
          in: path
          type: string
          description: Name of the webhook subscription event
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletesubscribednotificationevent
        method: DELETE
        description: Envestnet Delete Notification Subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: eventName
          in: path
          type: string
          description: Name of the webhook subscription event
          required: true
  exposes:
  - type: rest
    namespace: verification-configs-rest
    port: 8080
    description: REST adapter for Envestnet Verification APIs — Configs. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/configs/notifications/events
      name: configs-notifications-events
      description: REST surface for configs-notifications-events.
      operations:
      - method: GET
        name: getsubscribednotificationevents
        description: Envestnet Get Subscribed Notification Events
        call: verification-configs.getsubscribednotificationevents
        with:
          eventName: rest.eventName
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/configs/notifications/events/{eventname}
      name: configs-notifications-events-eventname
      description: REST surface for configs-notifications-events-eventName.
      operations:
      - method: PUT
        name: updatesubscribednotificationevent
        description: Envestnet Update Notification Subscription
        call: verification-configs.updatesubscribednotificationevent
        with:
          eventName: rest.eventName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsubscriptionnotificationevent
        description: Envestnet Subscribe For Notification Event
        call: verification-configs.createsubscriptionnotificationevent
        with:
          eventName: rest.eventName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesubscribednotificationevent
        description: Envestnet Delete Notification Subscription
        call: verification-configs.deletesubscribednotificationevent
        with:
          eventName: rest.eventName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: verification-configs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Envestnet Verification APIs — Configs. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: envestnet-get-subscribed-notification-events
      description: Envestnet Get Subscribed Notification Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: verification-configs.getsubscribednotificationevents
      with:
        eventName: tools.eventName
      outputParameters:
      - type: object
        mapping: $.
    - name: envestnet-update-notification-subscription
      description: Envestnet Update Notification Subscription
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: verification-configs.updatesubscribednotificationevent
      with:
        eventName: tools.eventName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: envestnet-subscribe-notification-event
      description: Envestnet Subscribe For Notification Event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: verification-configs.createsubscriptionnotificationevent
      with:
        eventName: tools.eventName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: envestnet-delete-notification-subscription
      description: Envestnet Delete Notification Subscription
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: verification-configs.deletesubscribednotificationevent
      with:
        eventName: tools.eventName
      outputParameters:
      - type: object
        mapping: $.