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