Activity दुवा
activity_slug सेट करून एक सूचना विद्यमान Live Activity शी जोडा. सूचनेवर टॅप केल्याने PushWard iOS अॅपमध्ये त्या activity मध्ये डीप-लिंक होते.

The activity_slug field
| Field | Type | Description |
|---|---|---|
activity_slug | string | Slug of an existing activity. The notification appears linked to that activity in the iOS app's notification inbox; tapping it opens the activity's detail screen. |
चेतावणी
An unknown activity_slug is rejected with HTTP 422 before the
notification is persisted. Create the activity first, then post the notification.
Example
बिल्ड activity शी जोडलेली सूचना
curl -X POST https://api.pushward.app/notifications \
-H "Authorization: Bearer hlk_YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"title": "Build complete",
"body": "Workflow #1234 finished in 3m 12s",
"source": "github-actions",
"source_display_name": "GitHub Actions",
"activity_slug": "my-build",
"push": true
}'