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

    Interface PhoneCallVerificationStatusResponse

    interface PhoneCallVerificationStatusResponse {
        callComplete?: boolean;
        callResult?: string;
        countryId?: string;
        id?: string;
        identity?: Identity;
        method?: "callout";
        price?: VerificationPriceCall;
        reason?: string;
        reference?: string;
        status?: string;
        verificationTimestamp?: Date;
    }
    Index

    Properties

    callComplete?: boolean

    Shows whether the call is complete or not.

    callResult?: string

    The result of the call.

    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?: "callout"

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

    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.

    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.