crowdin / crowdin-api-client-dotnet

.NET client library for Crowdin API
https://www.nuget.org/packages/Crowdin.Api/
MIT License
52 stars 26 forks source link

Add support for the Notifications API #179

Closed andrii-bodnar closed 1 year ago

andrii-bodnar commented 1 year ago

Crowdin API has a new Notifications API that allows sending notifications to the project and organization members. It would be great to add support for this API in this Crowdin API client.

API reference:

Manoj0Marmat commented 1 year ago

hey @andrii-bodnar will you lil bit give more info about what exactly need to do i don't get that need to add support point

Riju-bak commented 1 year ago

@Manoj0Marmat So crowdin-api-client-dotnet provides methods that essentially call crowdin's APIs. This makes it much easier for other devs (working on a .NET app) to make calls to crowdin's API , as the client abstracts a lot of the work required.

Have a look at Crowdin.Api.Dictionaries. Especially DictionariesApiExecutor.cs . You'll find methods that send a request to edit dictionary etc.

So just like that the client needs methods that can handle making calls to crowdin's Notifications API

@andrii-bodnar @innomaxx Please correct me if I'm wrong