Represents the result of the verification attempt for a specific customer attribute.

interface CustomerDataVerificationAttemptResponse {
    allowableAttempts: number;
    attribute: CustomerDataVerificationAttribute;
    creationTime: string;
    currentAttempts: number;
    notificationType: CustomerDataVerificationNotificationType;
    status: CustomerDataVerificationAttemptStatus;
    statusReason?: string;
    verificationAttemptId: string;
    verificationId: string;
}

Properties

allowableAttempts: number

The maximum number of allowed attempts to verify a particular customer attribute.

The customer attribute being attached to the particular verification process.

creationTime: string

Creation time.

Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

Example

"2024-05-08T14:43:33Z"
currentAttempts: number

The number of current attempts made to verify a particular customer attribute.

The mechanism used to deliver the customer attribute verification information.

The status of the verification attempt for a specific customer attribute.

statusReason?: string

The reason for the failed verification attempt for a specific customer attribute.

verificationAttemptId: string

A unique identifier for the specific verification attempt associated with a particular verification process.

verificationId: string

A unique identifier for the verification process associated with a particular customer attribute.