Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 5.5 KB

File metadata and controls

9 lines (6 loc) · 5.5 KB

DeleteTopicSubscriptionsRequestDto

Fields

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 identifiers to unsubscribe from the topic (max: 100). @deprecated Use the "subscriptions" property instead.
[
"subscriberId1",
"subscriberId2"
]
Subscriptions List<DeleteTopicSubscriptionsRequestDtoSubscriptions> List of subscriptions to unsubscribe from the topic (max: 100). Can be either a string array of subscriber IDs or an array of objects with identifier and/or subscriberId. If only subscriberId is provided, all subscriptions for that subscriber within the topic will be deleted. [
{
"identifier": "subscriber-123-subscription-a",
"subscriberId": "subscriber-123"
},
{
"subscriberId": "subscriber-456"
},
{
"identifier": "subscriber-789-subscription-b"
}
]