SendGrid · Capability

Twilio SendGrid Webhook Configuration API — Parse Webhook

Twilio SendGrid Webhook Configuration API — Parse Webhook. 6 operations. Lead operation: Retrieve all parse settings. Self-contained Naftiko capability covering one Sendgrid business surface.

Run with Naftiko SendgridParse Webhook

What You Can Do

GET
Listparsesetting — Retrieve all parse settings
/v1/v3/user/webhooks/parse/settings
POST
Createparsesetting — Create a parse setting
/v1/v3/user/webhooks/parse/settings
GET
Getparsesetting — Retrieve a specific parse setting
/v1/v3/user/webhooks/parse/settings/{hostname}
PATCH
Updateparsesetting — Update a parse setting
/v1/v3/user/webhooks/parse/settings/{hostname}
DELETE
Deleteparsesetting — Delete a parse setting
/v1/v3/user/webhooks/parse/settings/{hostname}
GET
Listparsestatic — Retrieves Inbound Parse Webhook statistics.
/v1/v3/user/webhooks/parse/stats

MCP Tools

retrieve-all-parse-settings

Retrieve all parse settings

read-only idempotent
create-parse-setting

Create a parse setting

retrieve-specific-parse-setting

Retrieve a specific parse setting

read-only idempotent
update-parse-setting

Update a parse setting

idempotent
delete-parse-setting

Delete a parse setting

idempotent
retrieves-inbound-parse-webhook-statistics

Retrieves Inbound Parse Webhook statistics.

read-only idempotent

Capability Spec

tsg_webhooks_v3-parse-webhook.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Twilio SendGrid Webhook Configuration API — Parse Webhook
  description: 'Twilio SendGrid Webhook Configuration API — Parse Webhook. 6 operations. Lead operation: Retrieve all parse
    settings. Self-contained Naftiko capability covering one Sendgrid business surface.'
  tags:
  - Sendgrid
  - Parse Webhook
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SENDGRID_API_KEY: SENDGRID_API_KEY
capability:
  consumes:
  - type: http
    namespace: tsg_webhooks_v3-parse-webhook
    baseUri: https://api.sendgrid.com
    description: Twilio SendGrid Webhook Configuration API — Parse Webhook business capability. Self-contained, no shared
      references.
    resources:
    - name: v3-user-webhooks-parse-settings
      path: /v3/user/webhooks/parse/settings
      operations:
      - name: listparsesetting
        method: GET
        description: Retrieve all parse settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createparsesetting
        method: POST
        description: Create a parse setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v3-user-webhooks-parse-settings-hostname
      path: /v3/user/webhooks/parse/settings/{hostname}
      operations:
      - name: getparsesetting
        method: GET
        description: Retrieve a specific parse setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateparsesetting
        method: PATCH
        description: Update a parse setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteparsesetting
        method: DELETE
        description: Delete a parse setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-user-webhooks-parse-stats
      path: /v3/user/webhooks/parse/stats
      operations:
      - name: listparsestatic
        method: GET
        description: Retrieves Inbound Parse Webhook statistics.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: string
          description: The number of statistics to return on each page.
        - name: offset
          in: query
          type: string
          description: The number of statistics to skip.
        - name: aggregated_by
          in: query
          type: string
          description: How you would like the statistics to by grouped.
        - name: start_date
          in: query
          type: string
          description: The starting date of the statistics you want to retrieve. Must be in the format YYYY-MM-DD
          required: true
        - name: end_date
          in: query
          type: string
          description: The end date of the statistics you want to retrieve. Must be in the format YYYY-MM-DD
    authentication:
      type: bearer
      token: '{{env.SENDGRID_API_KEY}}'
  exposes:
  - type: rest
    namespace: tsg_webhooks_v3-parse-webhook-rest
    port: 8080
    description: REST adapter for Twilio SendGrid Webhook Configuration API — Parse Webhook. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v3/user/webhooks/parse/settings
      name: v3-user-webhooks-parse-settings
      description: REST surface for v3-user-webhooks-parse-settings.
      operations:
      - method: GET
        name: listparsesetting
        description: Retrieve all parse settings
        call: tsg_webhooks_v3-parse-webhook.listparsesetting
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createparsesetting
        description: Create a parse setting
        call: tsg_webhooks_v3-parse-webhook.createparsesetting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/user/webhooks/parse/settings/{hostname}
      name: v3-user-webhooks-parse-settings-hostname
      description: REST surface for v3-user-webhooks-parse-settings-hostname.
      operations:
      - method: GET
        name: getparsesetting
        description: Retrieve a specific parse setting
        call: tsg_webhooks_v3-parse-webhook.getparsesetting
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateparsesetting
        description: Update a parse setting
        call: tsg_webhooks_v3-parse-webhook.updateparsesetting
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteparsesetting
        description: Delete a parse setting
        call: tsg_webhooks_v3-parse-webhook.deleteparsesetting
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/user/webhooks/parse/stats
      name: v3-user-webhooks-parse-stats
      description: REST surface for v3-user-webhooks-parse-stats.
      operations:
      - method: GET
        name: listparsestatic
        description: Retrieves Inbound Parse Webhook statistics.
        call: tsg_webhooks_v3-parse-webhook.listparsestatic
        with:
          limit: rest.limit
          offset: rest.offset
          aggregated_by: rest.aggregated_by
          start_date: rest.start_date
          end_date: rest.end_date
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tsg_webhooks_v3-parse-webhook-mcp
    port: 9090
    transport: http
    description: MCP adapter for Twilio SendGrid Webhook Configuration API — Parse Webhook. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: retrieve-all-parse-settings
      description: Retrieve all parse settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tsg_webhooks_v3-parse-webhook.listparsesetting
      outputParameters:
      - type: object
        mapping: $.
    - name: create-parse-setting
      description: Create a parse setting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tsg_webhooks_v3-parse-webhook.createparsesetting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-specific-parse-setting
      description: Retrieve a specific parse setting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tsg_webhooks_v3-parse-webhook.getparsesetting
      outputParameters:
      - type: object
        mapping: $.
    - name: update-parse-setting
      description: Update a parse setting
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: tsg_webhooks_v3-parse-webhook.updateparsesetting
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-parse-setting
      description: Delete a parse setting
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tsg_webhooks_v3-parse-webhook.deleteparsesetting
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-inbound-parse-webhook-statistics
      description: Retrieves Inbound Parse Webhook statistics.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tsg_webhooks_v3-parse-webhook.listparsestatic
      with:
        limit: tools.limit
        offset: tools.offset
        aggregated_by: tools.aggregated_by
        start_date: tools.start_date
        end_date: tools.end_date
      outputParameters:
      - type: object
        mapping: $.