Returns an existing SMS campaign
This method returns an existing SMS campaign that's in your account. The ‘campaignId’ of the campaign should be passed through in the URL.
Campaigns that are deleted will not be returned. If you attempt to return an SMS campaign with this status, you will receive an appropriate validation error message.
SOAP action: http://apiconnector.com/v2/sms/campaigns/{campaignId}
Input and output parameters
The input and output parameters for this method are:
Input parameters
- campaignId - string
Output parameters
No output
Example
using (var client = new ApiServiceClient())
{
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";
var result = client.GetSMSCampaign(account, {campaignId}).Result;
}