DeleteTopicSubscriptionsRequestDto

January 14, 2026 ยท View on GitHub

Fields

FieldTypeRequiredDescriptionExample
subscriberIdsList<String>:heavy_minus_sign:: 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"
]
subscriptionsList<DeleteTopicSubscriptionsRequestDtoSubscription>:heavy_minus_sign: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"
}
]