Interface IWebhooksApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public interface IWebhooksApiExecutor
Methods
|
Improve this Doc
View Source
AddWebhook(Int32, AddWebhookRequest)
Declaration
Task<Webhook> AddWebhook(int projectId, AddWebhookRequest request)
Parameters
Returns
|
Improve this Doc
View Source
DeleteWebhook(Int32, Int32)
Declaration
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
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
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
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