In order to use the Constant Contact SDK you have to follow these steps:
-
Add the CTCT.dll library to your references project.
-
Place your credentials in app.config file under the appSettings tag.
<add key="APIKey" value="APIkey"/>
<add key="Password" value="password"/>
<add key="Username" value="username"/>
<add key="RedirectURL" value="RedirectURL"/>
- In the file you wish to use the SDK include the following code in your file:
using CTCT;
using CTCT.Util;
using CTCT.Components.Contacts;
using CTCT.Auth;
using CTCT.Services;
- Create a ConstantContact object
ConstantContact constantContact = new ConstantContact();
- Use the functions of the SDK using the created object.
######Example for getting an contact
Contact contact = constantContact.GetContact(int contactId);