Class VerifySearchResponse
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
Checks
The list of PIN code check attempts made against this verification request.
[JsonProperty("checks")]
public VerifyCheck[] Checks { get; set; }
Property Value
Currency
The three-letter currency code (ISO 4217) for the price values.
[JsonProperty("currency")]
public string Currency { get; set; }
Property Value
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
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
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
Events
The list of delivery events (SMS or voice calls) that occurred during this verification.
[JsonProperty("events")]
public VerifyEvent[] Events { get; set; }
Property Value
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
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
Number
The phone number that was verified.
[JsonProperty("number")]
public string Number { get; set; }
Property Value
Price
The cost incurred for this verification request, in the currency specified by Currency.
[JsonProperty("price")]
public string Price { get; set; }
Property Value
RequestId
The unique identifier of the verification request.
[JsonProperty("request_id")]
public string RequestId { get; set; }
Property Value
SenderId
The sender ID used for SMS messages in this verification.
[JsonProperty("sender_id")]
public string SenderId { get; set; }
Property Value
Status
The current status of the verification request (e.g., "IN PROGRESS", "SUCCESS", "FAILED", "EXPIRED").
[JsonProperty("status")]
public string Status { get; set; }