Table of Contents

Class VerifySearchResponse

Namespace
Vonage.Verify
Assembly
Vonage.dll

Represents the detailed status and history of a verification request.

public class VerifySearchResponse
Inheritance
VerifySearchResponse
Inherited Members

Properties

AccountId

The Vonage account ID that initiated the verification request.

[JsonProperty("account_id")]
public string AccountId { get; set; }

Property Value

string

Checks

The list of PIN code check attempts made against this verification request.

[JsonProperty("checks")]
public VerifyCheck[] Checks { get; set; }

Property Value

VerifyCheck[]

Currency

The three-letter currency code (ISO 4217) for the price values.

[JsonProperty("currency")]
public string Currency { get; set; }

Property Value

string

DateFinalized

The date and time when the verification was completed or expired (format: YYYY-MM-DD HH:MM:SS).

[JsonProperty("date_finalized")]
public string DateFinalized { get; set; }

Property Value

string

DateSubmitted

The date and time when the verification request was submitted (format: YYYY-MM-DD HH:MM:SS).

[JsonProperty("date_submitted")]
public string DateSubmitted { get; set; }

Property Value

string

EstimatedPriceMessagesSent

The estimated cost in EUR of all messages and calls sent during verification. The total cost is the sum of this and Price.

[JsonProperty("estimated_price_messages_sent")]
public string EstimatedPriceMessagesSent { get; set; }

Property Value

string

Events

The list of delivery events (SMS or voice calls) that occurred during this verification.

[JsonProperty("events")]
public VerifyEvent[] Events { get; set; }

Property Value

VerifyEvent[]

FirstEventDate

The date and time of the first delivery event (format: YYYY-MM-DD HH:MM:SS).

[JsonProperty("first_event_date")]
public string FirstEventDate { get; set; }

Property Value

string

LastEventDate

The date and time of the most recent delivery event (format: YYYY-MM-DD HH:MM:SS).

[JsonProperty("last_event_date")]
public string LastEventDate { get; set; }

Property Value

string

Number

The phone number that was verified.

[JsonProperty("number")]
public string Number { get; set; }

Property Value

string

Price

The cost incurred for this verification request, in the currency specified by Currency.

[JsonProperty("price")]
public string Price { get; set; }

Property Value

string

RequestId

The unique identifier of the verification request.

[JsonProperty("request_id")]
public string RequestId { get; set; }

Property Value

string

SenderId

The sender ID used for SMS messages in this verification.

[JsonProperty("sender_id")]
public string SenderId { get; set; }

Property Value

string

Status

The current status of the verification request (e.g., "IN PROGRESS", "SUCCESS", "FAILED", "EXPIRED").

[JsonProperty("status")]
public string Status { get; set; }

Property Value

string