Class ImpersonationRequest
- Namespace
- Auth0.AuthenticationApi.Models
- Assembly
- Auth0.AuthenticationApi.dll
Represents a request to obtain a one-time link for impersonating a user.
public class ImpersonationRequest
- Inheritance
-
ImpersonationRequest
- Inherited Members
Remarks
This feature has been deprecated and will be removed from Auth0 and this SDK in a future release.
Properties
ClientId
Client ID of the application.
public string ClientId { get; set; }
Property Value
ImpersonateId
ID of the user to be impersonated.
public string ImpersonateId { get; set; }
Property Value
ImpersonatorId
user_id of the impersonator.
public string ImpersonatorId { get; set; }
Property Value
Protocol
Protocol to use against the identity provider. Can be one of oauth2
, wsfed
, wsfed-rms
, or samlp
.
public string Protocol { get; set; }
Property Value
ResponseType
Response type - should be code
.
public string ResponseType { get; set; }
Property Value
State
State parameter to pass in the request.
public string State { get; set; }
Property Value
Token
Bearer token to include with the request in the Authorization header.
public string Token { get; set; }