Skip to main content

Documentation Index

Fetch the complete documentation index at: https://cometchat-22654f5b-docs-flutter-campaigns.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

CometChat Campaigns lets you deliver targeted, rich notifications to users via an in-app notification feed. Each notification is a Card Schema JSON — a structured layout rendered natively by the CometChat Cards library. The SDK provides APIs to fetch feed items, listen for real-time delivery, mark items as read/delivered, report engagement, and retrieve unread counts.

Key Concepts

ConceptDescription
NotificationFeedItemA single notification in the feed. Contains Card Schema JSON in its content field, a category for filtering, timestamps, and metadata.
NotificationCategoryA category label used for filter chips (e.g., “Promotions”, “Updates”).
Card Schema JSONThe fully rendered card layout (images, text, buttons) inside NotificationFeedItem.content. Passed directly to the CometChat Cards renderer.
PushNotificationRepresents a campaign push notification payload received via FCM/APNs.

How Cards Render in the Notification Feed

Each NotificationFeedItem has a content field containing a Map<String, dynamic> — this is the Card Schema JSON. This JSON is passed directly to the CometChat Cards renderer package (cometchat_cards). The rendering flow:
  1. Fetch feed items via NotificationFeedRequest
  2. For each item, extract item.content — this is the Card Schema JSON
  3. Convert to string: jsonEncode(item.content)
  4. Pass to the Cards renderer (CometChatCardView)
  5. The renderer produces a native Flutter widget from the JSON

Card Schema JSON Structure

{
  "version": "1.0",
  "body": [
    { "type": "image", "id": "img_1", "url": "https://...", "height": 200 },
    { "type": "text", "id": "txt_1", "content": "Flash Sale!", "variant": "heading2" },
    { "type": "button", "id": "btn_1", "label": "Shop Now", "action": { "type": "openUrl", "url": "https://..." } }
  ],
  "style": { "background": {"light": "#FFFFFF", "dark": "#1E1E1E"}, "borderRadius": 12, "padding": 16 },
  "fallbackText": "Flash Sale! Shop Now: https://..."
}
The body array contains elements (text, image, button, row, column, etc.) rendered top-to-bottom. Interactive elements like buttons emit actions via a callback — the consumer handles navigation, deep links, or API calls.

Retrieve Notification Feed Items

Use NotificationFeedRequest to fetch a paginated list of feed items. Uses cursor-based pagination internally.

Build the Request

final request = (NotificationFeedRequestBuilder()
  ..setLimit(20))
  .build();

Builder Parameters

MethodTypeDefaultDescription
setLimit(int)int20Items per page (max 100)
setReadState(FeedReadState)enumFeedReadState.allFilter by read, unread, or all
setCategory(String)StringnullFilter by category ID
setChannelId(String)StringnullFilter by channel
setTags(List<String>)ListnullFilter by tags
setDateFrom(String)StringnullISO 8601 date — items sent on or after
setDateTo(String)StringnullISO 8601 date — items sent on or before

Fetch Items

request.fetchNext(
  onSuccess: (List<NotificationFeedItem> items) {
    for (final item in items) {
      final cardJson = jsonEncode(item.content);
      // Pass cardJson to CometChatCardView
    }
  },
  onError: (CometChatException e) {
    debugPrint("Error: ${e.message}");
  },
);
Call fetchNext() repeatedly for pagination. When the server has no more items, subsequent calls return an empty list.

NotificationFeedItem Fields

FieldTypeDescription
idStringUnique item identifier
categoryStringNotification category (e.g., “promotions”)
categoryIdString?Category ID for programmatic filtering
contentMap<String, dynamic>Card Schema JSON — pass to CometChat Cards renderer
readAtint?Unix timestamp when read, or null if unread
deliveredAtint?Unix timestamp when delivered, or null
sentAtintUnix timestamp when sent
metadataMap<String, dynamic>Custom key-value metadata
tagsList<String>Tags for filtering
senderStringSender identifier
receiverStringReceiver identifier
receiverTypeStringReceiver type
isReadboolComputed property — true if readAt != null

Retrieve Notification Categories

Use NotificationCategoriesRequest to fetch available categories for filter chips.
final categoriesRequest = (NotificationCategoriesRequestBuilder()
  ..setLimit(50))
  .build();

categoriesRequest.fetchNext(
  onSuccess: (List<NotificationCategory> categories) {
    for (final category in categories) {
      debugPrint("Category: ${category.name}");
    }
  },
  onError: (CometChatException e) {
    debugPrint("Error: ${e.message}");
  },
);

NotificationCategory Fields

FieldTypeDescription
idStringCategory identifier
nameStringDisplay name for filter UI
descriptionStringCategory description
appIdStringAssociated app ID

Real-Time Notification Feed Listener

Listen for new feed items arriving via WebSocket. This listener is independent from MessageListener, GroupListener, and CallListener.
class MyNotificationFeedListener with NotificationFeedListener {
  @override
  void onFeedItemReceived(NotificationFeedItem feedItem) {
    debugPrint("New item: ${feedItem.id}");
    final cardJson = jsonEncode(feedItem.content);
    // Insert at top of feed and render
  }
}

CometChat.addNotificationFeedListener(
  "feedListener",
  MyNotificationFeedListener(),
);
Remove the listener when no longer needed:
CometChat.removeNotificationFeedListener("feedListener");

Mark Feed Item as Read

Mark a single item as read. Idempotent — safe to call multiple times.
CometChat.markFeedItemAsRead(
  feedItem,
  onSuccess: (result) {
    debugPrint("Marked as read");
  },
  onError: (CometChatException e) {
    debugPrint("Error: ${e.message}");
  },
);

Mark Feed Item as Delivered

Mark a single item as delivered. Idempotent.
CometChat.markFeedItemAsDelivered(
  feedItem,
  onSuccess: (result) {
    // Success
  },
  onError: (CometChatException e) {
    debugPrint("Error: ${e.message}");
  },
);

Report Engagement

Report that a user engaged with a feed item (e.g., viewed, clicked, interacted). Idempotent.
CometChat.reportFeedEngagement(
  feedItem,
  "clicked",
  onSuccess: (result) {},
  onError: (CometChatException e) {},
);
The interactionString parameter is a free-form string describing the engagement (e.g., "viewed", "clicked", "interacted").

Get Unread Count

Fetch the total number of unread notification feed items.
CometChat.getNotificationFeedUnreadCount(
  onSuccess: (int count) {
    debugPrint("Unread: $count");
  },
  onError: (CometChatException e) {
    debugPrint("Error: ${e.message}");
  },
);

Fetch Single Feed Item

Fetch a specific item by ID — useful for deep linking from push notifications.
CometChat.getNotificationFeedItem(
  "item-id-123",
  onSuccess: (NotificationFeedItem item) {
    final cardJson = jsonEncode(item.content);
    // Render the card
  },
  onError: (CometChatException e) {
    debugPrint("Error: ${e.message}");
  },
);

Push Notification Tracking

When a campaign push notification arrives via FCM/APNs, use these methods to report delivery and click engagement.

Mark Push Notification as Delivered

Call this when you receive the push notification payload:
final pushNotification = PushNotification(
  id: pushPayload['announcementId'],
  announcementId: pushPayload['announcementId'],
  campaignId: pushPayload['campaignId'],
  source: "campaign",
);

CometChat.markPushNotificationDelivered(
  pushNotification,
  onSuccess: (result) {},
  onError: (CometChatException e) {},
);

Mark Push Notification as Clicked

Call this when the user taps the push notification:
CometChat.markPushNotificationClicked(
  pushNotification,
  onSuccess: (result) {},
  onError: (CometChatException e) {},
);

PushNotification Fields

FieldTypeDescription
idStringAnnouncement ID from the push payload
announcementIdStringSame as id (for clarity)
campaignIdString?Campaign ID if from a campaign
sourceStringAlways "campaign" for notification feed pushes

FeedReadState Enum

ValueDescription
FeedReadState.readOnly read items
FeedReadState.unreadOnly unread items
FeedReadState.allAll items (default)

Rendering Cards

The content field of each NotificationFeedItem is a Card Schema JSON map. To render it natively, use the CometChat Cards library.

Add the Cards Dependency

Add the cards package to your pubspec.yaml:
dependencies:
  cometchat_cards: ^1.0.0

Render a Card from a Feed Item

import 'package:cometchat_cards/cometchat_cards.dart';
import 'dart:convert';

Widget buildNotificationCard(NotificationFeedItem item) {
  return CometChatCardView(
    cardJson: jsonEncode(item.content),
    themeMode: CometChatCardThemeMode.auto,
    onAction: (CometChatCardActionEvent event) {
      // Handle action: event.action, event.elementId
      if (event.action is CometChatCardOpenUrlAction) {
        // Open URL in browser
      } else if (event.action is CometChatCardChatWithUserAction) {
        // Navigate to chat
      }
    },
  );
}
The Cards library is a pure renderer — it does not execute actions. Your code must handle action callbacks (opening URLs, navigating to chats, making API calls, etc.).

Supported Card Actions

When a user taps a button or link inside a card, the action callback receives one of these action types:
Action TypeParametersDescription
openUrlurl, openInOpen a URL in browser or webview
chatWithUseruidNavigate to 1:1 chat
chatWithGroupguidNavigate to group chat
sendMessagetext, receiverUid, receiverGuidSend a text message
copyToClipboardvalueCopy text to clipboard
downloadFileurl, filenameDownload a file
initiateCallcallType (audio/video), uid, guidStart a call
apiCallurl, method, headers, bodyMake an HTTP request
customCallbackcallbackId, payloadApp-specific logic