The verification status of the order, along with associated approval or rejection metadata.

RegulatedOrderVerificationStatus

interface RegulatedOrderVerificationStatus {
    ExternalReviewerId?: string;
    RejectionReason?: RejectionReason;
    RequiresMerchantAction: boolean;
    ReviewDate?: string;
    Status: VerificationStatus;
    ValidRejectionReasons: RejectionReason[];
    ValidVerificationDetails?: ValidVerificationDetail[];
}

Properties

ExternalReviewerId?: string

The identifier for the order's regulated information reviewer.

RegulatedOrderVerificationStatus

RejectionReason?: RejectionReason

RegulatedOrderVerificationStatus

RequiresMerchantAction: boolean

When true, the regulated information provided in the order requires a review by the merchant.

RegulatedOrderVerificationStatus

ReviewDate?: string

The date the order was reviewed. In ISO 8601 date time format.

RegulatedOrderVerificationStatus

RegulatedOrderVerificationStatus

ValidRejectionReasons: RejectionReason[]

A list of valid rejection reasons that may be used to reject the order's regulated information.

RegulatedOrderVerificationStatus

ValidVerificationDetails?: ValidVerificationDetail[]

A list of valid verification details that may be provided and the criteria required for when the verification detail can be provided.

RegulatedOrderVerificationStatus