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

    Interface SmsVerificationStatusResponse

    interface SmsVerificationStatusResponse {
        countryId?: string;
        id?: string;
        identity?: Identity;
        method?: "sms";
        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?: "sms"

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

    Prices associated with this verification

    reason?: string

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

    reference?: string

    The reference ID that was optionally passed together with the verification request.

    source?: SourceEnum

    Free text that the client is sending, used to show if the call/SMS was intercepted or not.

    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.