NationBuilderAPI 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package NationBuilderAPI --version 1.1.0
                    
NuGet\Install-Package NationBuilderAPI -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NationBuilderAPI" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NationBuilderAPI" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="NationBuilderAPI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NationBuilderAPI --version 1.1.0
                    
#r "nuget: NationBuilderAPI, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NationBuilderAPI@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NationBuilderAPI&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=NationBuilderAPI&version=1.1.0
                    
Install as a Cake Tool

A .NET wrapper for Nation Builder's HTTP API (http://nationbuilder.com/api_documentation).

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.0 16,681 2/12/2016
1.2.0 2,333 7/19/2015
1.1.0 1,774 4/29/2015
1.0.1 2,672 11/17/2014
1.0.0 2,178 10/28/2014

This is an alpha pre-release. It wraps only people, donations, and webhooks.

Changes since v. 1.0.1:

# Improvements

* Switched to new paging API.  There are now iterator versions of methods that return query results.

* Switched from `DateTime` to `DateTimeOffset` for data fields that specify a point in time.

* All client data structures are now AutoSerializable, and clone-able.

* NationBuilderSession is now IDisposable.

* Added NationBuilderSession.ShowPersonWithExternalId(string).


# Bug Fixes

* NationBuilderSession.UpdatePerson(): Fixed expected HTTP response status, so you don't get an exception.

* Fixed AbbreviatedPerson.birthdate parsin format.

* Changed Person.last_call_id's type from `DateTime?` to `long?`.

* Changed Person.could_vote_status's type from `bool?` to `int?`.  (Inaccurate Nation Builder documentation.)

* Changed Person.twitter_location's type from `Address` to `string`.  (Inaccurate Nation Builder documentation.)

* Changed Donation.merchant_account_id's type from `long` to `long?`.



Changes since v. 1.0.0:

* Added data structures for receiving webhook HTTP requests from Nation Builder in .NET WCF services.