Table of Contents

Class GetInsightsResponse

Namespace
Vonage.IdentityInsights.GetInsights
Assembly
Vonage.dll

Represents the response from the Identity Insights API containing requested phone number insights.

public record GetInsightsResponse : IEquatable<GetInsightsResponse>
Inheritance
GetInsightsResponse
Implements
Inherited Members

Constructors

GetInsightsResponse(Guid, Insights)

Represents the response from the Identity Insights API containing requested phone number insights.

public GetInsightsResponse(Guid RequestId, Insights Insights)

Parameters

RequestId Guid

The unique identifier for your request. This is an alphanumeric string up to 40 characters.

Insights Insights

A map of objects representing the requested insight(s), where each key corresponds to the name of the insight and the value contains the result and status of that insight.

Properties

Insights

A map of objects representing the requested insight(s), where each key corresponds to the name of the insight and the value contains the result and status of that insight.

[JsonPropertyName("insights")]
public Insights Insights { get; init; }

Property Value

Insights

RequestId

The unique identifier for your request. This is an alphanumeric string up to 40 characters.

[JsonPropertyName("request_id")]
public Guid RequestId { get; init; }

Property Value

Guid