ContactCustomFieldDelete
Delete the contact's custom field
{{:: 'controllers.documentation.chooseFramework' | translate }}
PM > Install-Package
NikSms.Library.Net
PM > Install-Package
NikSms.Library.NetCore
//Import Libraries
using System.Text;
using System.Net;
using System.Collections.Specialized;
using Newtonsoft.Json;
namespace AwesomeApplication
{
public class NikSmsApiV2Client
{
public async Task<string> GetContactList(){
string url = "https://niksms.com/api/v2/contact/custom-field/delete";
using (var client = new WebClient())
{
var values = new NameValueCollection();
values["username"] = "YourUserName";
values["password"] = "YourPassword";
values["id"] = field_id;
var response = await client.UploadValues(url, values);
var responseString = Encoding.Default.GetString(response);
return responseString;
}
}
}
}