Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

GetSubscriptionsRequest.cs

using Microsoft.AspNetCore.Http;

namespace Nop.Plugin.Misc.Zettle.Domain.Api.Pusher;

/// 
/// Represents request to get the webhook subscriptions
/// 
public class GetSubscriptionsRequest : PusherApiRequest
{
    /// 
    /// Gets the request path
    /// 
    public override string Path => "organizations/self/subscriptions";

    /// 
    /// Gets the request method
    /// 
    public override string Method => HttpMethods.Get;
}