NationBuilderAPI 1.1.0
dotnet add package NationBuilderAPI --version 1.1.0
NuGet\Install-Package NationBuilderAPI -Version 1.1.0
<PackageReference Include="NationBuilderAPI" Version="1.1.0" />
<PackageVersion Include="NationBuilderAPI" Version="1.1.0" />
<PackageReference Include="NationBuilderAPI" />
paket add NationBuilderAPI --version 1.1.0
#r "nuget: NationBuilderAPI, 1.1.0"
#:package NationBuilderAPI@1.1.0
#addin nuget:?package=NationBuilderAPI&version=1.1.0
#tool nuget:?package=NationBuilderAPI&version=1.1.0
A .NET wrapper for Nation Builder's HTTP API (http://nationbuilder.com/api_documentation).
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
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.