DeleteSMSCampaign

Marks an existing SMS campaign as deleted

This method is used to mark an existing SMS campaign in your account as deleted. The ‘campaignId’ of the campaign should be passed through in the URL.

Campaigns that are already deleted will be returned as OK.

SOAP action: http://apiconnector.com/v2/sms/campaigns/{campaignId}

❗️

API call in beta

Please note that this API call is in beta and is subject to change.

📘

Input and output parameters

The input and output parameters for this method are:

Input parameters

  • campaignId - required; string

Output parameters
No output

Example

using (var client = new ApiServiceClient())
{
    client.ClientCredentials.UserName.UserName = "username";
    client.ClientCredentials.UserName.Password = "password";

    var result = client.DeleteSMSCampaign(account, {campaignId}).Result;
}