Table of Contents

Class GetGroupResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Represents the metadata of a group. Member lists are retrieved via a separate endpoint.

[Serializable]
public record GetGroupResponseContent : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<GetGroupResponseContent>
Inheritance
GetGroupResponseContent
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }

Property Value

AdditionalProperties

ConnectionId

Identifier for the connection this group belongs to (if a connection group).

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

Property Value

string

CreatedAt

Timestamp of when the group was created.

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

Property Value

DateTime

ExternalId

External identifier for the group, often used for SCIM synchronization. Max length of 256 characters.

[JsonPropertyName("external_id")]
public string? ExternalId { get; set; }

Property Value

string

Id

Unique identifier for the group (service-generated).

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

Property Value

string

Name

Name of the group. Must be unique within its connection. Must contain between 1 and 128 printable ASCII characters.

[JsonPropertyName("name")]
public required string Name { get; set; }

Property Value

string

TenantName

Identifier for the tenant this group belongs to.

[JsonPropertyName("tenant_name")]
public required string TenantName { get; set; }

Property Value

string

UpdatedAt

Timestamp of when the group was last updated.

[JsonPropertyName("updated_at")]
public required DateTime UpdatedAt { get; set; }

Property Value

DateTime

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.