Twilio.Resources.Verify.V2.Service.VerificationCheck
(twilio_elixir v0.1.1)
Copy Markdown
View Source
VerificationCheck resource.
SID prefix: VE
Parent: /Services/{Sid}
Properties
| Field | Description |
|---|
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| account_sid | The SID of the Account that created the VerificationCheck resource. |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| amount | The amount of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.. PII: sensitive |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| channel | The verification method to use. One of: email, sms, whatsapp, call, or sna.. Values: sms, call, email, whatsapp, sna |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| date_created | The ISO 8601 date and time in GMT when the Verification Check resource was created.. Format: date-time |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| date_updated | The ISO 8601 date and time in GMT when the Verification Check resource was last updated.. Format: date-time |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| payee | The payee of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.. PII: sensitive |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
service_sid | The SID of the Service the resource is associated with. |
sid | The unique string that we created to identify the VerificationCheck resource. |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| sna_attempts_error_codes | List of error codes as a result of attempting a verification using the sna channel. The error codes are chronologically ordered, from the first attempt to the latest attempt. This will be an empty list if no errors occured or null if the last channel used wasn't sna. |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| status | The status of the verification. Can be: pending, approved, canceled, max_attempts_reached, deleted, failed or expired. |
credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
to | The phone number or email being verified. Phone numbers must be in E.164 format.. PII: standard |
valid | Use "status" instead. Legacy property indicating whether the verification was successful. |
Summary
Types
@type t() :: %Twilio.Resources.Verify.V2.Service.VerificationCheck{ account_sid: String.t() | nil, amount: String.t() | nil, channel: String.t(), date_created: String.t() | nil, date_updated: String.t() | nil, payee: String.t() | nil, service_sid: String.t() | nil, sid: String.t() | nil, sna_attempts_error_codes: list() | nil, status: String.t() | nil, to: String.t() | nil, valid: boolean() | nil }