Table of Contents

Class LoginRequest

Namespace
Auth0.ManagementApi.Models.Rules
Assembly
Auth0.ManagementApi.dll

Represents details of the Login request from the app to Auth0, including QueryString and User Location.

public class LoginRequest
Inheritance
LoginRequest
Inherited Members

Properties

Body

The body of the POST request on login transactions used on oauth2-resource-owner or wstrust-usernamemixed protocols.

[JsonProperty("body")]
public dynamic Body { get; set; }

Property Value

dynamic

Geography

[JsonProperty("geoip")]
public LoginRequestGeography Geography { get; set; }

Property Value

LoginRequestGeography

IpAddress

The originating IP address of the user trying to log in.

[JsonProperty("ip")]
public string IpAddress { get; set; }

Property Value

string

Query

The QueryString of the login transaction sent by the application.

[JsonProperty("query")]
public LoginRequestQuery Query { get; set; }

Property Value

LoginRequestQuery

UserAgent

The user-agent of the client that is trying to log in.

[JsonProperty("userAgent")]
public string UserAgent { get; set; }

Property Value

string