JavaScript HSM API Dinamo
    Preparing search index...

    Type Alias PixHttpResponseError

    Error response from HTTP network operations on PIX. The "status " field is always 1. At least one of " rcode " or "error " will be present.

    type PixHttpResponseError = {
        status: 1;
        rcode?: number;
        error?: string;
        http_status?: number;
        response_headers?: string;
        response_body?: string;
    }
    Index
    status: 1

    Result of the operation on native_host: 1 = error.

    rcode?: number

    HSM SDK return code (returned when the operation was executed).

    error?: string

    Error message (displayed in the event of validation failures or exceptions).

    http_status?: number

    HTTP status code (present if the error occurred after the HTTP response).

    response_headers?: string

    Raw HTTP headers (present if the error occurred after the HTTP response).

    response_body?: string

    Raw HTTP body (present if the error occurred after the HTTP response).