JavaScript HSM API Dinamo
    Preparing search index...

    Type Alias PixHttpResponseSuccess

    Successful response to HTTP network operations from the PIX (PIXPost, PIXPut, PIXGet, PIXDelete). The status field is always 0.

    type PixHttpResponseSuccess = {
        status: 0;
        rcode: number;
        http_status?: number;
        response_headers: string;
        response_body: string;
    }
    Index
    status: 0

    Result of the operation on native_host: 0 = success.

    rcode: number

    HSM SDK return code.

    http_status?: number

    HTTP status code returned by the remote server (included when available).

    response_headers: string

    Raw HTTP response headers (text; may be empty).

    response_body: string

    Raw HTTP response body (text; may be empty).