How to delete a data subscription?

The data subscription is never deleted unless you explicitly drop it. This is the method to do it:

void Delete(long id, string database = null);
Parameters
id long Subscription identifier.
database string Name of database to create a data subscription. If null, default database configured in DocumentStore will be used.

Example

store.Subscriptions.Delete(id);