Reference

Payloads that make useful alerts.

Only the website project is available in this workspace, so these examples are generic. Use the webhook URL copied from your PINGSLAP Space.

Headers

For JSON payloads, send Content-Type: application/json. If your tool offers a request method, choose POST. After your request is saved in the source system, use Verify Integration.

Minimal JSON

{
  "title": "New alert",
  "message": "Something important happened"
}

Lead example

{
  "title": "New website lead",
  "message": "Taylor Reed wants a roof quote",
  "name": "Taylor Reed",
  "email": "taylor@example.com",
  "source": "Contact page"
}

Nested payload

{
  "title": "Checkout issue",
  "message": "Payment retry failed",
  "customer": {
    "name": "Jordan Lee",
    "plan": "Pro"
  },
  "meta": {
    "severity": "high",
    "orderId": "A1042"
  }
}

Best practices

  • Send a short title.
  • Put the human action in the message.
  • Include an ID or source for debugging.
  • Avoid passwords, card data, and private health or legal details.