Webiant Logo Webiant Logo
  1. No results found.

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

DeleteAppRequest.cs

using Microsoft.AspNetCore.Http;

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

/// 
/// Represents request to delete app connections associated with user data access
/// 
public class DeleteAppRequest : OAuthApiRequest, IAuthorizedRequest
{
    /// 
    /// Gets the request path
    /// 
    public override string Path => "application-connections/self";

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