ping-identity
    Preparing search index...

    Type Alias ErrorNode

    Terminal error node — flow encountered a recoverable server error.

    TODO-SDK-FUTURE-PARITY:status is present on iOS (the native ErrorNode carries the HTTP status code from the server response). Android Orchestrate 2.0.1 does not expose an HTTP status field on ErrorNode, so this field is absent on Android until the SDK is updated.

    type ErrorNode = {
        input?: Record<string, unknown>;
        message: string;
        status?: number;
        type: "ErrorNode";
    }
    Index

    Properties

    input?: Record<string, unknown>

    Full server input payload associated with this error node.

    Parity with Journey's ErrorNode.input.

    message: string

    Human-readable error message.

    status?: number

    HTTP status code from the server error response.

    Present on iOS only — absent on Android (SDK parity gap, see Android DaVinciNodeMapper).

    type: "ErrorNode"