ProjectManager.SDK
11.1.1703
See the version list below for details.
dotnet add package ProjectManager.SDK --version 11.1.1703
NuGet\Install-Package ProjectManager.SDK -Version 11.1.1703
<PackageReference Include="ProjectManager.SDK" Version="11.1.1703" />
paket add ProjectManager.SDK --version 11.1.1703
#r "nuget: ProjectManager.SDK, 11.1.1703"
// Install ProjectManager.SDK as a Cake Addin #addin nuget:?package=ProjectManager.SDK&version=11.1.1703 // Install ProjectManager.SDK as a Cake Tool #tool nuget:?package=ProjectManager.SDK&version=11.1.1703
ProjectManager.com SDK for API v4
This software development kit contains all API definitions for the [ProjectManager.com] REST API v4.
Why use the SDK?
The ProjectManager API v4 is available as a REST definition in OpenAPI format. You can read the documentation online at softwaredeveloper.projectmanager.com.
This SDK provides a few capabilities that developers may find more useful than hand-writing REST API code:
- Documentation is available in your editor via autocomplete and hover docblocks
- Patch notes are available detailing changes
- Implements GZip encoding and HTTPS connection pooling
- Automated updates whenever new API endpoints are added
Using this SDK
Here's how to add this SDK to create a project.
dotnet add package ProjectManager.Sdk
To create an API client for ProjectManager, you must specify:
- Your API key, and
- Your environment URL.
For the ProjectManager production environment, the environment URL is https://api.projectmanager.com
.
To obtain an API key:
- Log on to ProjectManager.com
- Click your name in the bottom left hand corner
- Select Account, then API
using System;
using ProjectManager.Sdk;
public class CSharpExample
{
public static async ProjectManagerClient GetProjectManagerClient(string? apiKey, string? env)
{
return ProjectManagerClient
.WithCustomEnvironment(env ?? Environment.GetEnvironmentVariable("PM_ENV"))
.WithBearerToken(apiKey ?? Environment.GetEnvironmentVariable("PM_API_KEY"))
.WithAppName("MyApplicationName");
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Net.Http (>= 4.3.4)
- System.Text.Json (>= 6.0.2)
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 |
---|---|---|
121.0.4887 | 40 | 10/30/2024 |
120.0.4689 | 91 | 10/20/2024 |
119.0.4625 | 92 | 9/30/2024 |
117.0.4438 | 114 | 9/3/2024 |
115.0.4330 | 100 | 8/28/2024 |
115.0.4328 | 122 | 8/19/2024 |
114.0.4169 | 76 | 7/26/2024 |
112.0.3856 | 103 | 6/13/2024 |
110.0.3705 | 105 | 5/29/2024 |
107.0.3368 | 120 | 4/9/2024 |
104.0.3086 | 128 | 2/26/2024 |
103.0.3003 | 116 | 2/11/2024 |
102.0.2949 | 124 | 1/31/2024 |
102.0.2887 | 107 | 1/26/2024 |
102.0.2886 | 111 | 1/23/2024 |
99.0.2548 | 193 | 12/11/2023 |
98.0.2363 | 155 | 11/20/2023 |
97.0.2178 | 157 | 10/25/2023 |
96.0.2123 | 156 | 10/15/2023 |
11.1.2053 | 143 | 10/11/2023 |
11.1.2012 | 139 | 10/2/2023 |
11.1.1863 | 140 | 10/2/2023 |
11.1.1704 | 173 | 9/1/2023 |
11.1.1703 | 146 | 8/19/2023 |
11.1.1468 | 158 | 7/26/2023 |
11.1.1438 | 184 | 7/20/2023 |
# Patch notes for 11.1.1703
These patch notes summarize the changes from version 11.1.1468.
Added 36 new APIs, including:
* Dashboard.RetrieveDashboardUserSettings (GET /api/data/dashboards/settings/{type})
* File.DownloadFile (GET /api/data/files/{documentId}/download)
* File.UploadFile (POST /api/data/files/upload)
* File.UpdateFile (PUT /api/data/files/{fileId})
* Integration.SetupWorkSpaceforIntegrations (POST /api/data/integrations/setup)
* ... 31 more