Delete Subscriber

Permanently deletes a subscriber. It cannot be undone. Also immediately deletes any subscriptions associated with the subscriber.


Request

DELETE /event/v1/subscriber/:id

Parameters


No parameters


Example


curl -XDELETE 'https://platform.wellviasolutions.com/event/v1/subscriber/evntsbr_XXX' \
    -u 'Bearer:{your_token}'
DELETE https://platform.wellviasolutions.com/event/v1/subscriber/evntsbr_XXX HTTP/1.1
using WellViaSDK.Event;

const string apiSubscriptionKey = "your_api_subscription_key";
var _evntClient = new WellViaEventServiceClient(subscriptionKey: apiSubscriptionKey);

string subscriberId = "evntsbr_XXX";
var response = await _evntClient.DeleteSubscriberAsync(id: subscriberId);

Returns


No content returned