Search Results for

    Show / Hide Table of Contents

    Class WebhooksApiExecutor

    Inheritance
    object
    WebhooksApiExecutor
    Implements
    IWebhooksApiExecutor
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Crowdin.Api.Webhooks
    Assembly: Crowdin.Api.dll
    Syntax
    public class WebhooksApiExecutor : IWebhooksApiExecutor

    Constructors

    | Edit this page View Source

    WebhooksApiExecutor(ICrowdinApiClient)

    Declaration
    public WebhooksApiExecutor(ICrowdinApiClient apiClient)
    Parameters
    Type Name Description
    ICrowdinApiClient apiClient
    | Edit this page View Source

    WebhooksApiExecutor(ICrowdinApiClient, IJsonParser)

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

    Methods

    | Edit this page View Source

    AddWebhook(long, AddWebhookRequest)

    Add webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<Webhook> AddWebhook(long projectId, AddWebhookRequest request)
    Parameters
    Type Name Description
    long projectId
    AddWebhookRequest request
    Returns
    Type Description
    Task<Webhook>
    | Edit this page View Source

    DeleteWebhook(long, long)

    Delete webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task DeleteWebhook(long projectId, long webhookId)
    Parameters
    Type Name Description
    long projectId
    long webhookId
    Returns
    Type Description
    Task
    | Edit this page View Source

    EditWebhook(long, long, IEnumerable<WebhookPatch>)

    Edit webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<Webhook> EditWebhook(long projectId, long webhookId, IEnumerable<WebhookPatch> patches)
    Parameters
    Type Name Description
    long projectId
    long webhookId
    IEnumerable<WebhookPatch> patches
    Returns
    Type Description
    Task<Webhook>
    | Edit this page View Source

    GetWebhook(long, long)

    Get webhook. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<Webhook> GetWebhook(long projectId, long webhookId)
    Parameters
    Type Name Description
    long projectId
    long webhookId
    Returns
    Type Description
    Task<Webhook>
    | Edit this page View Source

    ListWebhooks(long, int, int)

    List webhooks. Documentation: Crowdin API Crowdin Enterprise API

    Declaration
    [PublicAPI]
    public Task<ResponseList<Webhook>> ListWebhooks(long projectId, int limit = 25, int offset = 0)
    Parameters
    Type Name Description
    long projectId
    int limit
    int offset
    Returns
    Type Description
    Task<ResponseList<Webhook>>

    Implements

    IWebhooksApiExecutor
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX