BizDoc.Social.Monday
8.1.1
See the version list below for details.
dotnet add package BizDoc.Social.Monday --version 8.1.1
NuGet\Install-Package BizDoc.Social.Monday -Version 8.1.1
<PackageReference Include="BizDoc.Social.Monday" Version="8.1.1" />
<PackageVersion Include="BizDoc.Social.Monday" Version="8.1.1" />
<PackageReference Include="BizDoc.Social.Monday" />
paket add BizDoc.Social.Monday --version 8.1.1
#r "nuget: BizDoc.Social.Monday, 8.1.1"
#addin nuget:?package=BizDoc.Social.Monday&version=8.1.1
#tool nuget:?package=BizDoc.Social.Monday&version=8.1.1
Monday for BizDoc
BizDoc extension for Monday enable interacting with BizDoc components embedded into Monday.com user interface:
Setup
- Install Nuget:
dotnet add package BizDoc.Core.Monday
- Create Monday app.
Add me.read
, users.read
, teams.read
scopes. Set redirect uri to server.
Use ngrok for development.
- Configure service in startup.cs
builder.Services.AddBizDoc(...).
AddMonday(options => {
options.ApiKey = "api-key-here";
options.BoardId = (context) => ...;
options.GroupId = (context) => ...;
options.ClientId = "client-id-here";
options.ClientSecret = "client-secret-here";
}).
UseIdentityProvider();
...
app.UseBizDoc().
UseMonday();
Replace the client-id, client-secret and api-key above with those of your Monday app.
If you wish to implement a custom Identity Provider, replace the UseIdentityProvider() with AddBizDoc().UseIdentityProvider<MyProvider>() and implement your provider as MyProvider.
- Setup page urls.
MondayService
Utilize MondayService
service to create an Item in Monday.
public class MyForm : FormBase<MyFormModel> {
private readonly MondayService _service;
private readonly IDocumentContext _context;
public MyForm(MondayService service, IDocumentContext context) {
_service = service;
_context = context;
}
public override Task CreateAsync(MyFormModel model) {
_service.CreateItemAsync(_context.Document.Id, model.Subject);
}
}
Call ChangeItemStateAsync() and UpdateItemAsync() to to change state or add an update.
Configuration
Teams data source.
Product | Versions 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. |
-
net8.0
- BizDoc.Core (>= 8.13.15)
- GraphQL.Client (>= 6.0.2)
- GraphQL.Client.Serializer.SystemTextJson (>= 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 |
---|---|---|
9.0.0 | 219 | 5/15/2025 |
8.5.2 | 166 | 3/11/2025 |
8.5.1 | 108 | 2/27/2025 |
8.3.1 | 103 | 7/29/2024 |
8.1.1 | 173 | 1/17/2024 |
8.1.0 | 131 | 1/12/2024 |
7.1.0 | 200 | 5/4/2023 |
7.0.0 | 337 | 11/28/2022 |
6.8.6 | 336 | 11/8/2022 |
6.8.5 | 367 | 10/31/2022 |
6.8.4 | 402 | 10/27/2022 |
6.8.3 | 433 | 10/24/2022 |
6.8.2 | 439 | 10/20/2022 |
6.8.1 | 431 | 10/20/2022 |