Sinch Node.js SDK - v1.5.0
    Preparing search index...

    Interface WhatsAppVerificationStatusResponse

    interface WhatsAppVerificationStatusResponse {
        countryId?: string;
        id?: string;
        identity?: Identity;
        method?: "whatsapp";
        price?: VerificationPriceSms;
        reason?: string;
        reference?: string;
        source?: SourceEnum;
        status?: string;
        verificationTimestamp?: Date;
    }
    Index

    Properties

    countryId?: string

    The ID of the country to which the verification was sent.

    id?: string

    The unique ID of the verification request.

    identity?: Identity

    Identity

    method?: "whatsapp"

    The method of the verification request. This will always be whatsapp.

    Prices associated with this verification

    reason?: string

    Displays the reason why a verification has FAILED, was DENIED, or was ABORTED.

    reference?: string

    Used to pass your own reference in the request for tracking purposes. Must be a unique value for each started verification request. The value must be encodable in the URL path segment. This value is passed to all events and returned from the status and report endpoints. The reference can be used to check the status of verifications, like with ID or identity.

    source?: SourceEnum

    Source

    status?: string

    The status of the verification request.

    verificationTimestamp?: Date

    The timestamp in UTC format.
    Note: The formatting does not respect ISO-8601 and the returned value has the format YYYY-MM-DDThh:mm:ss.SSS. If you need to parse this value into a specific date object in your programming language, please append Z (Zulu time = UTC) at the end of the date value to match the ISO-8601 format: YYYY-MM-DDThh:mm:ss.SSSZ.