Class WebhooksApiExecutor
Inheritance
System.Object
WebhooksApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public class WebhooksApiExecutor : object
Constructors
|
Improve this Doc
View Source
WebhooksApiExecutor(ICrowdinApiClient)
Declaration
public WebhooksApiExecutor(ICrowdinApiClient apiClient)
Parameters
|
Improve this Doc
View Source
WebhooksApiExecutor(ICrowdinApiClient, IJsonParser)
Declaration
public WebhooksApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
Parameters
Methods
|
Improve this Doc
View Source
AddWebhook(Int32, AddWebhookRequest)
Declaration
public async Task<Webhook> AddWebhook(int projectId, AddWebhookRequest request)
Parameters
Returns
|
Improve this Doc
View Source
DeleteWebhook(Int32, Int32)
Declaration
public async Task DeleteWebhook(int projectId, int webhookId)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
webhookId |
|
Returns
|
Improve this Doc
View Source
EditWebhook(Int32, Int32, IEnumerable<WebhookPatch>)
Declaration
public async Task<Webhook> EditWebhook(int projectId, int webhookId, IEnumerable<WebhookPatch> patches)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
webhookId |
|
IEnumerable<WebhookPatch> |
patches |
|
Returns
|
Improve this Doc
View Source
GetWebhook(Int32, Int32)
Declaration
public async Task<Webhook> GetWebhook(int projectId, int webhookId)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
webhookId |
|
Returns
|
Improve this Doc
View Source
ListWebhooks(Int32, Int32, Int32)
Declaration
public async Task<ResponseList<Webhook>> ListWebhooks(int projectId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
System.Int32 |
projectId |
|
System.Int32 |
limit |
|
System.Int32 |
offset |
|
Returns