Skip to main content
GET
/
api
/
v2
/
notifications
List webhook delivery attempts
curl --request GET \
  --url https://api.pawpayments.com/api/v2/notifications \
  --header 'x-api-key: <api-key>'
{
  "ok": true,
  "result": [
    {
      "attempt": 1,
      "id": "65f1c3a4e8b1c2d3a4b5c700",
      "invoice_id": "65f1c3a4e8b1c2d3a4b5c6d7",
      "response_body": "OK",
      "sent_at": 1763398850,
      "status_code": 200,
      "url": "https://shop.example.com/webhook/paw"
    }
  ],
  "pagination": {
    "page": 1,
    "pages": 1,
    "per_page": 20,
    "total": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pawpayments.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1
Required range: x >= 1
per_page
integer
default:20
Required range: 1 <= x <= 100
invoice_id
string | null

Response

OK

ok
boolean
required
result
NotificationLog · object[]
required
pagination
Pagination · object
required
Example:
{
  "page": 1,
  "pages": 1,
  "per_page": 20,
  "total": 1
}