juspay/hyperswitch · error · ErrorResponse

IR_00

IR_00

Error message

This API is under development and will be made available soon.

What it means

Error "This API is under development and will be made available soon." thrown in juspay/hyperswitch.

Source

Thrown at crates/hyperswitch_domain_models/src/router_data.rs:953

            code: "HE_00".to_string(),
            message: "Something went wrong".to_string(),
            reason: None,
            status_code: http::StatusCode::INTERNAL_SERVER_ERROR.as_u16(),
            attempt_status: None,
            connector_transaction_id: None,
            connector_response_reference_id: None,
            network_decline_code: None,
            network_advice_code: None,
            network_error_message: None,
            connector_metadata: None,
        }
    }
}

impl ErrorResponse {
    pub fn get_not_implemented() -> Self {
        Self {
            code: "IR_00".to_string(),
            message: "This API is under development and will be made available soon.".to_string(),
            reason: None,
            status_code: http::StatusCode::INTERNAL_SERVER_ERROR.as_u16(),
            attempt_status: None,
            connector_transaction_id: None,
            connector_response_reference_id: None,
            network_decline_code: None,
            network_advice_code: None,
            network_error_message: None,
            connector_metadata: None,
        }
    }
}

/// Get updatable trakcer objects of payment intent and payment attempt
#[cfg(feature = "v2")]
pub trait TrackerPostUpdateObjects<Flow, FlowRequest, D> {
    fn get_payment_intent_update(

View on GitHub (pinned to 3093f22cc4)

Solutions

  1. This API is not yet available; do not call it, or gate the call behind the corresponding feature flag
  2. Track the Hyperswitch roadmap/release notes for when this API becomes available

When it happens

Trigger: Thrown at crates/hyperswitch_domain_models/src/router_data.rs:883 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of juspay/hyperswitch@3093f22cc4 (2026-08-19). Data as JSON: /api/errors/efeaf031cdeec579. Report an issue: GitHub.