Postmark API
  1. Bounces API
Postmark API
  • Bounces API
    • Get bounces
      GET
    • Get a single bounce
      GET
    • Activate a bounce
      PUT
    • Get bounce dump
      GET
    • Get delivery stats
      GET
  • Sending API
    • Send a single email
      POST
    • Send a batch of emails
      POST
    • Send a batch of email using templates.
      POST
    • Send an email using a Template
      POST
  • Messages API
    • Inbound message search
      GET
    • Bypass rules for a blocked inbound message
      PUT
    • Inbound message details
      GET
    • Retry a failed inbound message for processing
      PUT
    • Outbound message search
      GET
    • Clicks for a all messages
      GET
    • Retrieve Message Clicks
      GET
    • Opens for all messages
      GET
    • Retrieve Message Opens
      GET
    • Outbound message details
      GET
    • Outbound message dump
      GET
  • Server Configuration API
    • Get Server Configuration
      GET
    • Edit Server Configuration
      PUT
  • Stats API
    • Get outbound overview
      GET
    • Get bounce counts
      GET
    • Get click counts
      GET
    • Get browser usage by family
      GET
    • Get clicks by body location
      GET
    • Get browser plaform usage
      GET
    • Get email open counts
      GET
    • Get email client usage
      GET
    • Get email platform usage
      GET
    • Get sent counts
      GET
    • Get spam complaints
      GET
    • Get tracked email counts
      GET
  • Templates API
    • Get the Templates associated with this Server
    • Create a Template
    • Test Template Content
    • Delete a Template
    • Get a Template
    • Update a Template
  • Inbound Rules API
    • List inbound rule triggers
    • Create an inbound rule trigger
    • Delete a single trigger
  1. Bounces API

Get bounces

GET
/bounces
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '//api.postmarkapp.com//bounces?count=&offset=' \
--header 'X-Postmark-Server-Token;'
Response Response Example
200 - Example 1
{
    "Bounces": [
        {
            "BouncedAt": "2019-08-24T14:15:22Z",
            "CanActivate": true,
            "Content": "string",
            "Description": "string",
            "Details": "string",
            "DumpAvailable": true,
            "Email": "user@example.com",
            "ID": "string",
            "Inactive": true,
            "MessageID": "string",
            "Name": "string",
            "Subject": "string",
            "Tag": "string",
            "Type": "string",
            "TypeCode": 0
        }
    ],
    "TotalCount": 0
}

Request

Query Params

Header Params

Responses

🟢200OK
application/json
Body

🟠422422
🔴500500
Modified at 2023-08-16 02:49:25
Next
Get a single bounce
Built with