কনটেন্টে যান

Activity লিংক

activity_slug সেট করে একটি বিদ্যমান Live Activity-তে একটি নোটিফিকেশন যুক্ত করুন। নোটিফিকেশনে ট্যাপ করলে PushWard iOS অ্যাপের সেই activity-তে ডিপ-লিংক হয়।

Notification inbox detail view with video attachment and tap link

The activity_slug field

FieldTypeDescription
activity_slugstringSlug 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
  }'