> For the complete documentation index, see [llms.txt](https://docs.hyperswitch.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hyperswitch.io/integrations/connectors-integrations/payment-processor-capabilities/available-connectors/multisafepay.md).

# MultiSafepay

Accept card, bank redirect, pay-later, and wallet payments through MultiSafepay.

MultiSafepay brings several checkout families into one connector, including cards, bank redirects, wallets, and pay-later payments. Some paths can be reused with mandates, while others remain one-time checkout options. Refund handling is available across the declared methods.

### Status and capabilities

**Integration status:** sandbox

**Category:** payment gateway

**Webhook flows:** None declared in code

| Payment method | Type        | Mandates      | Refunds   | Capture methods                 | 3DS            | Card networks                                                 | Countries | Currencies              |
| -------------- | ----------- | ------------- | --------- | ------------------------------- | -------------- | ------------------------------------------------------------- | --------- | ----------------------- |
| bank redirect  | EPS         | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | AUT       | EUR                     |
| bank redirect  | Giropay     | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | DEU       | EUR                     |
| bank redirect  | iDEAL       | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | NLD       | EUR                     |
| bank redirect  | Sofort      | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | 9         | EUR                     |
| bank redirect  | Trustly     | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | 15        | EUR, GBP, SEK           |
| card           | Credit Card | supported     | supported | automatic, sequential automatic | required       | American Express, Cartes Bancaires, Maestro, Mastercard, Visa | 249       | 34                      |
| card           | Debit Card  | supported     | supported | automatic, sequential automatic | required       | American Express, Cartes Bancaires, Maestro, Mastercard, Visa | 249       | 34                      |
| pay later      | Klarna      | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | 13        | DKK, EUR, GBP, NOK, SEK |
| wallet         | Alipay      | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | -         | EUR, USD                |
| wallet         | Google Pay  | supported     | supported | automatic, sequential automatic | not applicable | -                                                             | 75        | 34                      |
| wallet         | MB WAY      | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | PRT       | EUR                     |
| wallet         | PayPal      | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | 249       | 25                      |
| wallet         | WeChat Pay  | not supported | supported | automatic, sequential automatic | not applicable | -                                                             | -         | EUR                     |

### Authentication

MultiSafepay requires an **API Key**. Hyperswitch sends it as an `api_key` query parameter in every request URL rather than as a header. See [`MultisafepayAuthType::try_from()`](https://github.com/juspay/hyperswitch/blob/d4e93b6e6dd39e45a8d5d8647b362f1bb8543946/crates/hyperswitch_connectors/src/connectors/multisafepay/transformers.rs#L821-L832), [`build_headers()`](https://github.com/juspay/hyperswitch/blob/d4e93b6e6dd39e45a8d5d8647b362f1bb8543946/crates/hyperswitch_connectors/src/connectors/multisafepay.rs#L68-L77), and the URL construction in [`payments_sync()`](https://github.com/juspay/hyperswitch/blob/d4e93b6e6dd39e45a8d5d8647b362f1bb8543946/crates/hyperswitch_connectors/src/connectors/multisafepay.rs#L196).

### Before you start

1. Register with MultiSafepay at [multisafepay.com](https://www.multisafepay.com/).
2. Sign in to the [Hyperswitch control center](https://app.hyperswitch.io/).
3. Obtain the **API Key** under **Integrations → Site** in the MultiSafepay dashboard.
4. Enable the same payment methods in MultiSafepay and in your Hyperswitch connector configuration.

Follow [Activate a connector on Hyperswitch](/integrations/connectors-integrations/activate-connector-on-hyperswitch.md), then return here for MultiSafepay-specific behavior.

### Webhooks

Handled event wire values: **0**. Webhooks are not currently supported, so status updates rely on syncing through the API. Object-reference and resource-object lookups return `WebhooksNotImplemented`, while event typing returns `EventNotSupported`; see [`IncomingWebhook for Multisafepay`](https://github.com/juspay/hyperswitch/blob/d4e93b6e6dd39e45a8d5d8647b362f1bb8543946/crates/hyperswitch_connectors/src/connectors/multisafepay.rs#L525-L548).

### Source reference

Authentication and webhook behavior on this page is tied to Hyperswitch `d4e93b6e6dd39e45a8d5d8647b362f1bb8543946`. See [MultiSafepay connector source](https://github.com/juspay/hyperswitch/blob/d4e93b6e6dd39e45a8d5d8647b362f1bb8543946/crates/hyperswitch_connectors/src/connectors/multisafepay.rs) and [MultiSafepay transformers](https://github.com/juspay/hyperswitch/blob/d4e93b6e6dd39e45a8d5d8647b362f1bb8543946/crates/hyperswitch_connectors/src/connectors/multisafepay/transformers.rs).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hyperswitch.io/integrations/connectors-integrations/payment-processor-capabilities/available-connectors/multisafepay.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
