Class OrganizationWebhooksApiExecutor
Inheritance
OrganizationWebhooksApiExecutor
Assembly: Crowdin.Api.dll
Syntax
public class OrganizationWebhooksApiExecutor : IOrganizationWebhooksApiExecutor
Constructors
|
Edit this page
View Source
OrganizationWebhooksApiExecutor(ICrowdinApiClient)
Declaration
public OrganizationWebhooksApiExecutor(ICrowdinApiClient apiClient)
Parameters
|
Edit this page
View Source
OrganizationWebhooksApiExecutor(ICrowdinApiClient, IJsonParser)
Declaration
public OrganizationWebhooksApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
Parameters
Methods
|
Edit this page
View Source
AddWebhook(AddWebhookRequestBase)
Declaration
[PublicAPI]
public Task<OrganizationWebhookResource> AddWebhook(AddWebhookRequestBase request)
Parameters
Returns
|
Edit this page
View Source
DeleteWebhook(long)
Declaration
[PublicAPI]
public Task DeleteWebhook(long organizationWebhookId)
Parameters
Type |
Name |
Description |
long |
organizationWebhookId |
|
Returns
|
Edit this page
View Source
EditWebhook(long, IEnumerable<OrganizationWebhookPatch>)
Declaration
[PublicAPI]
public Task<OrganizationWebhookResource> EditWebhook(long organizationWebhookId, IEnumerable<OrganizationWebhookPatch> patches)
Parameters
Returns
|
Edit this page
View Source
GetWebhook(long)
Declaration
[PublicAPI]
public Task<OrganizationWebhookResource> GetWebhook(long organizationWebhookId)
Parameters
Type |
Name |
Description |
long |
organizationWebhookId |
|
Returns
|
Edit this page
View Source
ListWebhooks(int, int)
Declaration
[PublicAPI]
public Task<ResponseList<OrganizationWebhookResource>> ListWebhooks(int limit = 25, int offset = 0)
Parameters
Type |
Name |
Description |
int |
limit |
|
int |
offset |
|
Returns
Implements