Class VerifyCheckRequest
Represents a request to validate a PIN code entered by the user against an active verification request.
public class VerifyCheckRequest
- Inheritance
-
VerifyCheckRequest
- Inherited Members
Properties
Code
The PIN code entered by the user. Must match the code sent in the verification SMS or voice call.
[JsonProperty("code")]
public string Code { get; set; }
Property Value
IpAddress
Deprecated. This field is no longer used and will be ignored.
[JsonProperty("ip_address")]
public string IpAddress { get; set; }
Property Value
RequestId
The unique identifier of the verification request to validate against. This is the RequestId received from VerifyRequestAsync(VerifyRequest, Credentials).
[JsonProperty("request_id")]
public string RequestId { get; set; }