| Field | Type | Required | Description | Example |
|---|---|---|---|---|
SubscriberIds |
List<string> | ➖ | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. List of subscriber IDs to subscribe to the topic (max: 100). @deprecated Use the "subscriptions" property instead. |
[ "subscriberId1", "subscriberId2" ] |
Subscriptions |
List<Models.Components.Subscriptions> | ➖ | List of subscriptions to subscribe to the topic (max: 100). Can be either a string array of subscriber IDs or an array of objects with identifier and subscriberId | [ { "identifier": "subscriber-123-subscription-a", "subscriberId": "subscriber-123" }, { "identifier": "subscriber-456-subscription-b", "subscriberId": "subscriber-456" } ] |
Name |
string | ➖ | The name of the topic | My Topic |
Context |
Dictionary<String, CreateTopicSubscriptionsRequestDtoContext> | ➖ | N/A | |
Preferences |
List<Models.Components.Preferences> | ➖ | The preferences of the topic. Can be a simple workflow ID string, workflow preference object, or group filter object | [ { "workflowId": "workflow-123", "condition": { "===": [ { "var": "tier" }, "premium" ] } } ] |