MagicBell · Example Payload

Magicbell Notification Send Example

notificationspush notificationsin-app notificationsemailSMSSlackMicrosoft Teamswebhooksnotification inboxmultichannelmobile pushweb push

Magicbell Notification Send Example is an example object payload from MagicBell, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titlecontentaction_urlcategoryrecipientsoverrides

Example Payload

Raw ↑
{
  "title": "Your order has shipped!",
  "content": "Your order #ORD-98765 has been shipped and will arrive by Friday.",
  "action_url": "https://app.example.com/orders/ORD-98765",
  "category": "order-updates",
  "recipients": {
    "matches": "email:customer@example.com"
  },
  "overrides": {
    "channels": {
      "email": {
        "subject": "Order #ORD-98765 Shipped"
      },
      "mobile_push": {
        "title": "Your order shipped!"
      }
    }
  }
}