Webiant Logo Webiant Logo
  1. No results found.

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

GetUserInfoRequest.cs

using Microsoft.AspNetCore.Http;

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

/// 
/// Represents request to get user info
/// 
public class GetUserInfoRequest : OAuthApiRequest, IAuthorizedRequest
{
    /// 
    /// Gets the request path
    /// 
    public override string Path => "users/self";

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