Table of Contents

Class Psd2Request

Namespace
Vonage.Verify
Assembly
Vonage.dll

Represents a PSD2-compliant verification request for Strong Customer Authentication (SCA), displaying the payment recipient and amount to the user.

public class Psd2Request : VerifyRequestBase
Inheritance
Psd2Request
Inherited Members

Properties

Amount

The payment amount to be confirmed, in Euros. Displayed to the user in the verification message.

[JsonProperty("amount")]
public double? Amount { get; set; }

Property Value

double?

Payee

The name of the payment recipient displayed to the user in the verification message (e.g., "Acme Corp").

[JsonProperty("payee")]
public string Payee { get; set; }

Property Value

string

WorkflowId

The delivery workflow that defines the sequence of SMS and voice calls used to deliver the verification code. Defaults to SMS_TTS_TTS if not specified.

[JsonProperty("workflow_id")]
public Psd2Request.Workflow? WorkflowId { get; set; }

Property Value

Psd2Request.Workflow?