Search Results for

    Show / Hide Table of Contents

    Interface IWebhooksApiExecutor

    Namespace: Crowdin.Api.Webhooks
    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
    Type Name Description
    long projectId
    AddWebhookRequest request
    Returns
    Type Description
    Task<Webhook>
    | Edit this page View Source

    DeleteWebhook(long, long)

    Declaration
    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>)

    Declaration
    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)

    Declaration
    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)

    Declaration
    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>>
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX