Interface IWebhooksApiExecutor
Assembly: Crowdin.Api.dll
Syntax
[PublicAPI]
public interface IWebhooksApiExecutor
Methods
|
Edit this page
View Source
AddWebhook(long, AddWebhookRequest)
Declaration
Task<Webhook> AddWebhook(long projectId, AddWebhookRequest request)
Parameters
Returns
|
Edit this page
View Source
DeleteWebhook(long, long)
Declaration
Task DeleteWebhook(long projectId, long webhookId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
webhookId |
|
Returns
|
Edit this page
View Source
EditWebhook(long, long, IEnumerable<WebhookPatch>)
Declaration
Task<Webhook> EditWebhook(long projectId, long webhookId, IEnumerable<WebhookPatch> patches)
Parameters
Returns
|
Edit this page
View Source
GetWebhook(long, long)
Declaration
Task<Webhook> GetWebhook(long projectId, long webhookId)
Parameters
Type |
Name |
Description |
long |
projectId |
|
long |
webhookId |
|
Returns
|
Edit this page
View Source
ListWebhooks(long, int, int)
Declaration
Task<ResponseList<Webhook>> ListWebhooks(long projectId, int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
long |
projectId |
|
int |
limit |
|
int |
offset |
|
Returns