Search Results for

    Show / Hide Table of Contents

    Class WebhooksApiExecutor

    Inheritance
    System.Object
    WebhooksApiExecutor
    Implements
    IWebhooksApiExecutor
    Namespace: Crowdin.Api.Webhooks
    Assembly: Crowdin.Api.dll
    Syntax
    public class WebhooksApiExecutor : object, IWebhooksApiExecutor

    Constructors

    | Improve this Doc View Source

    WebhooksApiExecutor(ICrowdinApiClient)

    Declaration
    public WebhooksApiExecutor(ICrowdinApiClient apiClient)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    | Improve this Doc View Source

    WebhooksApiExecutor(ICrowdinApiClient, IJsonParser)

    Declaration
    public WebhooksApiExecutor(ICrowdinApiClient apiClient, IJsonParser jsonParser)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    IJsonParser jsonParser

    Methods

    | Improve this Doc View Source

    AddWebhook(Int32, AddWebhookRequest)

    Add webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async Task<Webhook> AddWebhook(int projectId, AddWebhookRequest request)
    Parameters
    Type Name Description
    System.Int32 projectId
    AddWebhookRequest request
    Returns
    Type Description
    Task<Webhook>
    | Improve this Doc View Source

    DeleteWebhook(Int32, Int32)

    Delete webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async Task DeleteWebhook(int projectId, int webhookId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 webhookId
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    EditWebhook(Int32, Int32, IEnumerable<WebhookPatch>)

    Edit webhook. Documentation: Crowdin API Crowdin Enterprise API

    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
    Type Description
    Task<Webhook>
    | Improve this Doc View Source

    GetWebhook(Int32, Int32)

    Get webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    public async Task<Webhook> GetWebhook(int projectId, int webhookId)
    Parameters
    Type Name Description
    System.Int32 projectId
    System.Int32 webhookId
    Returns
    Type Description
    Task<Webhook>
    | Improve this Doc View Source

    ListWebhooks(Int32, Int32, Int32)

    List webhooks. Documentation: Crowdin API Crowdin Enterprise API

    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
    Type Description
    Task<ResponseList<Webhook>>

    Implements

    IWebhooksApiExecutor
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX