PowerOfficeGoSdk 2.58.0
dotnet add package PowerOfficeGoSdk --version 2.58.0
NuGet\Install-Package PowerOfficeGoSdk -Version 2.58.0
<PackageReference Include="PowerOfficeGoSdk" Version="2.58.0" />
<PackageVersion Include="PowerOfficeGoSdk" Version="2.58.0" />
<PackageReference Include="PowerOfficeGoSdk" />
paket add PowerOfficeGoSdk --version 2.58.0
#r "nuget: PowerOfficeGoSdk, 2.58.0"
#:package PowerOfficeGoSdk@2.58.0
#addin nuget:?package=PowerOfficeGoSdk&version=2.58.0
#tool nuget:?package=PowerOfficeGoSdk&version=2.58.0
About
PowerOffice Go SDK is the official API client for integrating to PowerOffice Go through our API.
Getting started
To use the API, you must have a PowerOffice Go user and client. If you want a test user and client for API testing, don't hesitate to contact us on go-api@poweroffice.no.
Each integration will after registration be provided an ApplicationKey that is unique for that integration. Integrations added to a specific client will generate a ClientKey. Combinations of a valid ApplicationKey and ClientKey will give the API client access to the a client's data in PowerOffice Go.
Read more about this here
Example usage (creating a customer)
// Set up authorization settings
var authorizationSettings = new AuthorizationSettings
{
ApplicationKey = "<You Application Key Here>",
ClientKey = "<PowerOffice Go Client Key Here>",
TokenStore = new BasicInMemoryTokenStore(),
EndPointHost = Settings.EndPointMode.Production //For authorization against the demo environment - Change this to Settings.EndPointMode.Demo
};
// Initialize the PowerOffice Go API and request authorization
var api = await Go.CreateAsync(authorizationSettings);
//Create a customer
var customer = new Customer()
{
Name = "My example customer",
VatNumber = "999999997"
};
//Save the customer to PowerOffice Go
customer = await api.Customer.SaveAsync(customer);
Console.WriteLine($"Customer saved with ID: {customer.Id}");
More examples can be found on github
Documentation & Support
Documentation is hosted here
Developer support is provided via e-mail: go-api@poweroffice.no
Bugs and issues can be reported using the github issue tracker
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. 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. |
.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 is compatible. 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. |
-
.NETFramework 4.7.2
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.3)
- System.ComponentModel.Annotations (>= 5.0.0)
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 13.0.3)
- System.ComponentModel.Annotations (>= 5.0.0)
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 |
---|---|---|
2.58.0 | 89,237 | 1/24/2024 |
2.57.0 | 738 | 1/10/2024 |
2.56.0 | 1,273 | 1/5/2024 |
2.55.0 | 411 | 12/20/2023 |
2.54.0 | 391 | 12/14/2023 |
2.53.0 | 2,504 | 12/6/2023 |
2.52.0 | 380 | 11/29/2023 |
2.51.0 | 1,845 | 11/22/2023 |
2.50.0 | 18,644 | 8/23/2023 |
2.49.0 | 32,521 | 5/31/2023 |
2.48.0 | 1,025 | 5/25/2023 |
2.47.0 | 22,141 | 2/2/2023 |
2.46.0 | 1,430 | 12/23/2022 |
2.45.0 | 7,478 | 12/14/2022 |
2.44.0 | 455 | 12/7/2022 |
2.43.0 | 4,287 | 11/17/2022 |
2.58:
- AccrualBase: Added ResultAccountAgricultureDepartment and BalancingAccountAgricultureDepartment
- JournalEntryVoucherLine: Added Quantity2
- AccountTransaction: Added AgricultureDepartment
The changelog for previous versions can be found here: https://api.poweroffice.net/Web/docs/index.html#Common/Changelog.md