Postmark Inbound Rules API API

The Inbound Rules API API from Postmark — 2 operation(s) for inbound rules api.

Operations 3

POST /triggers/inboundrules Postmark Create an inbound rule trigger #
GET /triggers/inboundrules Postmark List inbound rule triggers #
DELETE /triggers/inboundrules/{triggerid} Postmark Delete a single trigger #

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/postmark-inbound-rules-api-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

postmark-inbound-rules-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Postmark Server Inbound Rules API
  description: 'Postmark makes sending and receiving email

    incredibly easy.

    '
  version: 1.0.0
servers:
- url: https://api.postmarkapp.com/
tags:
- name: Inbound Rules API
paths:
  /triggers/inboundrules:
    post:
      operationId: createInboundRule
      tags:
      - Inbound Rules API
      summary: Postmark Create an inbound rule trigger
      parameters:
      - name: X-Postmark-Server-Token
        required: true
        description: The token associated with the Server on which this request will operate.
        in: header
        schema:
          type: string
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                properties:
                  ID:
                    type: integer
                  Rule:
                    type: string
        422:
          $ref: '#/components/responses/422'
        500:
          $ref: '#/components/responses/500'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateInboundRuleRequest'
    get:
      operationId: listInboundRules
      tags:
      - Inbound Rules API
      summary: Postmark List inbound rule triggers
      parameters:
      - name: X-Postmark-Server-Token
        required: true
        description: The token associated with the Server on which this request will operate.
        in: header
        schema:
          type: string
      - name: count
        in: query
        required: true
        description: Number of records to return per request.
        schema:
          type: integer
      - name: offset
        in: query
        required: true
        description: Number of records to skip.
        schema:
          type: integer
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                properties:
                  TotalCount:
                    type: integer
                  InboundRules:
                    type: array
                    items:
                      properties:
                        ID:
                          type: integer
                        Rule:
                          type: string
                          format: email
        422:
          $ref: '#/components/responses/422'
        500:
          $ref: '#/components/responses/500'
  /triggers/inboundrules/{triggerid}:
    delete:
      operationId: deleteInboundRule
      tags:
      - Inbound Rules API
      summary: Postmark Delete a single trigger
      parameters:
      - name: X-Postmark-Server-Token
        required: true
        description: The token associated with the Server on which this request will operate.
        in: header
        schema:
          type: string
      - name: triggerid
        in: path
        description: The ID of the Inbound Rule that should be deleted.
        required: true
        schema:
          type: integer
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardPostmarkResponse'
        422:
          $ref: '#/components/responses/422'
        500:
          $ref: '#/components/responses/500'
components:
  schemas:
    StandardPostmarkResponse:
      description: A Postmark API error.
      properties:
        ErrorCode:
          type: integer
        Message:
          type: string
    CreateInboundRuleRequest:
      description: ''
      properties:
        Rule:
          format: email
          type: string