Certifyos Send Grid Webhook Resource API

The Send Grid Webhook Resource API from Certifyos — 2 operation(s) for send grid webhook resource.

Operations 2

POST /outreach/sendgrid/webhook/email-status Handle email delivery status events from SendGrid Event Webhook #
POST /outreach/sendgrid/webhook/incoming-parse Handle incoming email from SendGrid Inbound Parse Webhook #

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/certifyos-send-grid-webhook-resource-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 email required.

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

OpenAPI Specification

certifyos-send-grid-webhook-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for Certify application
  title: Certify API Layer Send Grid Webhook Resource API
  version: 1.0.0
servers:
- url: http://localhost:9000
  description: Local Development Server
- url: https://api-service.staging.certifyos.com
  description: Staging Server
- url: https://api-service.internal.certifyos.com
  description: Internal Server
- url: https://api-service.test.certifyos.com
  description: Test Server
- url: https://api-service.demo.certifyos.com
  description: Demo Server
- url: https://api-service.certifyos.com
  description: Production Server
tags:
- name: Send Grid Webhook Resource
paths:
  /outreach/sendgrid/webhook/email-status:
    post:
      summary: Handle email delivery status events from SendGrid Event Webhook
      description: Receives email delivery status events (delivered, bounced, opened, clicked, etc.) from SendGrid's Event Webhook. This is a public endpoint that does not require authentication.
      operationId: handleSendGridEmailStatus
      requestBody:
        content:
          application/json:
            schema:
              type: string
        required: true
      responses:
        '200':
          description: Webhook event processed successfully
          content:
            application/json: {}
        '400':
          description: Bad Request - Invalid payload format
          content:
            application/json: {}
        '500':
          description: Internal Server Error - Webhook processing failed
          content:
            application/json: {}
      tags:
      - Send Grid Webhook Resource
      parameters:
      - name: tenant-id
        in: header
        required: true
        description: Tenant ID
        schema:
          type: string
  /outreach/sendgrid/webhook/incoming-parse:
    post:
      summary: Handle incoming email from SendGrid Inbound Parse Webhook
      description: Receives and processes incoming emails forwarded by SendGrid's Inbound Parse Webhook. This is a public endpoint that does not require authentication.
      operationId: parseSendgridIncomingEmail
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                to:
                  type: string
                from:
                  type: string
                subject:
                  type: string
                text:
                  type: string
                html:
                  type: string
                headers:
                  type: string
                emailId:
                  type: string
                outreachId:
                  type: string
                tenantId:
                  type: string
                workflowId:
                  type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json: {}
        '400':
          description: Bad Request
      tags:
      - Send Grid Webhook Resource
      parameters:
      - name: tenant-id
        in: header
        required: true
        description: Tenant ID
        schema:
          type: string
components:
  securitySchemes:
    jwt:
      type: http
      description: JWT Authentication - Provide only the raw token without Bearer prefix
      scheme: bearer
      bearerFormat: JWT