Define the business event
Decide when to send, whom to send to, and when not to send.
Notify2You's enterprise aggregation service connects business systems with carrier and channel paths through message objects, suggested actions, SMS fallback and webhook-based state handling.
The message object keeps rich content and SMS fallback separate so both experiences can be reviewed during integration.
{
"externalRef": "order_1042",
"recipient": "+{country}{number}",
"rcs": {
"title": "Your parcel arrives today",
"text": "Estimated 2:20–4:20 PM",
"actions": [
{ "type": "OPEN_URL", "label": "Track parcel" }
]
},
"fallback": {
"channel": "SMS",
"text": "Parcel due today. Track: {trusted_link}"
}
}Put permissions, security, consent and exceptional paths ahead of endpoint wiring.
Decide when to send, whom to send to, and when not to send.
Write the RCS card and SMS fallback separately.
Confirm sender, recipient consent, opt-out and applicable rules.
Use stable references and safe retry semantics.
Validate signatures and tolerate duplicate or out-of-order events.
Build acceptance cases around target markets, devices and fallback.
Webhooks carry status changes and user actions through defined event names, signature validation, retry windows and field conventions.
{
"eventId": "evt_1042_01",
"eventType": "message.action",
"occurredAt": "2026-08-29T09:41:00Z",
"data": {
"externalRef": "order_1042",
"action": "TRACK_PARCEL"
}
}
// Route verified actions into the business workflow.A production integration coordinates identity, permissions, limits, data handling, monitoring and recovery across the full request lifecycle.
View the integration checklist →Use environment-specific base URLs, controlled credentials and versioned documentation for production API access.
Manage separate base URLs and credentials for development, test and production, with controlled release transitions.
Messages can inform and guide, but payments, identity checks and account changes should happen in an appropriately secured flow.
Organize markets, use cases, volume range, consent requirements and preferred system connections.