Table of Contents

Class OrganizationInvitation

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll
public class OrganizationInvitation
Inheritance
OrganizationInvitation
Inherited Members

Properties

AppMetadata

Contains app meta data. The user has read/write access to this.

[JsonProperty("app_metadata")]
public dynamic AppMetadata { get; set; }

Property Value

dynamic

ClientId

Auth0 client ID. Used to resolve the application's login initiation endpoint.

[JsonProperty("client_id")]
public string ClientId { get; set; }

Property Value

string

ConnectionId

The ID of the connection to force invitee to authenticate with.

[JsonProperty("connection_id")]
public string ConnectionId { get; set; }

Property Value

string

CreatedAt

The creation time of the invitation.

[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }

Property Value

DateTime

ExpiresAt

The expiration time of the invitation.

[JsonProperty("expires_at")]
public DateTime ExpiresAt { get; set; }

Property Value

DateTime

Id

The ID of the invitation

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

InvitationUrl

The invitation URL to be send to the invitee.

[JsonProperty("invitation_url")]
public string InvitationUrl { get; set; }

Property Value

string

Invitee

Information about the person being invited

[JsonProperty("invitee")]
public OrganizationInvitationInvitee Invitee { get; set; }

Property Value

OrganizationInvitationInvitee

Inviter

Information about the person that is creating the invitation

[JsonProperty("inviter")]
public OrganizationInvitationInviter Inviter { get; set; }

Property Value

OrganizationInvitationInviter

OrganizationId

The ID of the organization for which the user should be invited

[JsonProperty("organization_id")]
public string OrganizationId { get; set; }

Property Value

string

Roles

List of role IDs to associated with the user.

[JsonProperty("roles")]
public IList<string> Roles { get; set; }

Property Value

IList<string>

TicketId

The ID of the invitation ticket.

[JsonProperty("ticket_id")]
public string TicketId { get; set; }

Property Value

string

UserMetadata

Contains user meta data. The user has read/write access to this.

[JsonProperty("user_metadata")]
public dynamic UserMetadata { get; set; }

Property Value

dynamic