Search Results for

    Show / Hide Table of Contents

    Interface IWebhooksApiExecutor

    Namespace: Crowdin.Api.Webhooks
    Assembly: Crowdin.Api.dll
    Syntax
    public interface IWebhooksApiExecutor

    Methods

    | Improve this Doc View Source

    AddWebhook(Int32, AddWebhookRequest)

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

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

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

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

    Declaration
    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>>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX