GithubHelp home page GithubHelp logo

penguinboy / createsend-dotnet Goto Github PK

View Code? Open in Web Editor NEW

This project forked from campaignmonitor/createsend-dotnet

1.0 2.0 1.0 1.17 MB

A .NET library for v3 of the createsend API

C# 100.00%

createsend-dotnet's Introduction

createsend-dotnet

A .NET library which implements the complete functionality of v3 of the CreateSend API.

As well as the source code for the library, we provide a single merged assembly (createsend-dotnet.dll) as a download, which can be used directly as a reference in .NET projects, if you do not want to worry about building the solution yourself.

Installation

The easiest way of getting up and running:

  1. Add the createsend-dotnet.dll assembly as a reference in your project

  2. Add the following element to the appSettings section of your configuration file (replacing your_api_key with your actual API Key)

     <add key="api_key" value="your_api_key" />
    

Using NuGet:

  1. Install-Package campaignmonitor-api

  2. Edit the following element which is created in the appSettings section of your configuration file (replacing your_api_key with your actual API Key):

     <add key="api_key" value="your_api_key" />
    

Example

Example config file:

<?xml version="1.0"?>
<configuration>
  <appSettings>
    <add key="api_key" value="98wqdu9qw8ud98quwd9q8wud98uq98wu"/>
  </appSettings>
  <startup><supportedRuntime version="v2.0.50727"/></startup>
</configuration>

Example console app:

using System;
using System.Collections.Generic;
using System.Text;
using createsend_dotnet;

namespace dotnet_api_client
{
    class Program
    {
        static void Main(string[] args)
        {
            List<BasicClient> clients = (List<BasicClient>)General.Clients();
            foreach (BasicClient c in clients)
                Console.WriteLine(string.Format("ID: {0}; Name: {1}", c.Name, c.ClientID));
            Console.ReadLine();
        }
    }
}

createsend-dotnet's People

Contributors

itgoeslikethis avatar jdennes avatar justin-digicon avatar penguinboy avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.