Crews.PlanningCenter.Api 3.4.1

Prefix Reserved
dotnet add package Crews.PlanningCenter.Api --version 3.4.1
                    
NuGet\Install-Package Crews.PlanningCenter.Api -Version 3.4.1
                    
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="Crews.PlanningCenter.Api" Version="3.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Crews.PlanningCenter.Api" Version="3.4.1" />
                    
Directory.Packages.props
<PackageReference Include="Crews.PlanningCenter.Api" />
                    
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 Crews.PlanningCenter.Api --version 3.4.1
                    
#r "nuget: Crews.PlanningCenter.Api, 3.4.1"
                    
#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 Crews.PlanningCenter.Api@3.4.1
                    
#: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=Crews.PlanningCenter.Api&version=3.4.1
                    
Install as a Cake Addin
#tool nuget:?package=Crews.PlanningCenter.Api&version=3.4.1
                    
Install as a Cake Tool

.NET Planning Center API Library

NuGet Version Build Coverage

A strongly-typed .NET client library for the Planning Center API, featuring a fluent syntax and comprehensive authentication support.

Installation

dotnet add package Crews.PlanningCenter.Api

Quick Start

PlanningCenterPersonalAccessToken token = new()
{
    AppId = "your-app-id",
    Secret = "your-secret"
};

var httpClient = new HttpClient
{
    BaseAddress = new Uri(PlanningCenterAuthenticationDefaults.BaseUrl)
};
httpClient.DefaultRequestHeaders.Authorization = token;

var client = new PeopleClient(httpClient).Latest;

var response = await client
    .People
    .WithId("123")
    .GetAsync();

Console.WriteLine($"Person: {response.Data?.Attributes.Name}");

Documentation

Full documentation — including authentication, usage examples, and API reference — is available at pcapi.crews.dev.


S.D.G.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
3.4.1 108 5/7/2026
3.4.0 116 5/6/2026 3.4.0 is deprecated because it has critical bugs.
3.3.0 98 5/6/2026
3.2.0 129 4/15/2026
3.1.0 114 4/9/2026
3.0.0 125 3/18/2026
2.0.0 235 9/25/2025
1.2.0 276 8/29/2025
1.1.0 216 1/23/2025
1.0.2 168 1/15/2025
1.0.0-preview.14 131 12/6/2024
1.0.0-preview.13 124 11/30/2024
1.0.0-preview.12 126 11/29/2024
1.0.0-preview.11 137 11/11/2024
1.0.0-preview.10 143 11/11/2024
1.0.0-preview.9 130 11/9/2024
1.0.0-preview.8 133 11/9/2024
1.0.0-preview.7 123 10/16/2024
Loading failed