repo
stringclasses
4 values
file_path
stringlengths
6
193
extension
stringclasses
30 values
content
stringlengths
0
5.21M
token_count
int64
0
3.8M
hyperswitch
cypress-tests-v2/cypress/fixtures/organization.json
.json
{ "org_create": { "organization_name": "Hyperswitch" }, "org_update": { "organization_name": "Hyperswitch", "metadata": { "additional_info": "123" } } }
57
hyperswitch
cypress-tests-v2/cypress/fixtures/api_key.json
.json
{ "api_key_create": { "name": "Hyperswitch API Key", "expiration": "", "description": null }, "api_key_update": { "description": "Hyperswitch Cypress specific API Key", "expiration": "" } }
62
hyperswitch
cypress-tests-v2/cypress/utils/State.js
.js
class State { data = {}; constructor(data) { this.data = data; this.data["connectorId"] = Cypress.env("CONNECTOR"); this.data["baseUrl"] = Cypress.env("BASEURL"); this.data["adminApiKey"] = Cypress.env("ADMINAPIKEY"); this.data["email"] = Cypress.env("HS_EMAIL"); this.data["password"] = Cypr...
145
hyperswitch
cypress-tests-v2/cypress/utils/RequestBodyUtils.js
.js
const keyPrefixes = { localhost: { publishable_key: "pk_dev_", key_id: "dev_", }, integ: { publishable_key: "pk_snd_", key_id: "snd_", }, sandbox: { publishable_key: "pk_snd_", key_id: "snd_", }, }; export function isoTimeTomorrow() { const now = new Date(); // Create a new dat...
255
hyperswitch
connector-template/transformers.rs
.rs
use common_enums::enums; use serde::{Deserialize, Serialize}; use masking::Secret; use common_utils::types::{StringMinorUnit}; use hyperswitch_domain_models::{ payment_method_data::PaymentMethodData, router_data::{ConnectorAuthType, RouterData}, router_flow_types::refunds::{Execute, RSync}, router_reque...
1,901
hyperswitch
connector-template/mod.rs
.rs
pub mod transformers; use error_stack::{report, ResultExt}; use masking::{ExposeInterface, Mask}; use common_utils::{ errors::CustomResult, ext_traits::BytesExt, types::{AmountConvertor, StringMinorUnit, StringMinorUnitForConnector}, request::{Method, Request, RequestBuilder, RequestContent}, }; use ...
4,645
hyperswitch
connector-template/test.rs
.rs
use masking::Secret; use router::{ types::{self, api, storage::enums, }}; use crate::utils::{self, ConnectorActions}; use test_utils::connector_auth; #[derive(Clone, Copy)] struct {{project-name | downcase | pascal_case}}Test; impl ConnectorActions for {{project-name | downcase | pascal_case}}Test {} impl utils::...
2,965
hyperswitch
config/development.toml
.toml
[log.file] enabled = false [log.console] enabled = true level = "DEBUG" log_format = "default" [log.telemetry] traces_enabled = false metrics_enabled = false use_xray_generator = false bg_metrics_collection_interval_in_secs = 15 [key_manager] enabled = false # TODO: Update database credentials before running applic...
37,507
hyperswitch
config/otel-collector.yaml
.yaml
receivers: otlp: protocols: grpc: endpoint: 0.0.0.0:4317 exporters: otlp: endpoint: tempo:4317 tls: insecure: true debug: verbosity: detailed prometheus: endpoint: 0.0.0.0:8889 namespace: router const_labels: app_name: router-api service: telemetry: ...
177
hyperswitch
config/vector.yaml
.yaml
acknowledgements: enabled: true enrichment_tables: sdk_map: type: file file: path: /etc/vector/config/sdk_map.csv encoding: type: csv schema: publishable_key: string merchant_id: string api: enabled: true address: 0.0.0.0:8686 sources: kafka_tx_events: type: ...
1,502
hyperswitch
config/dashboard.toml
.toml
[default.theme] primary_color="#006DF9" primary_hover_color="#005ED6" sidebar_primary="#FCFCFD" sidebar_secondary= "#FFFFFF" sidebar_hover_color= "#D9DDE5" sidebar_primary_text_color="#1C6DEA" sidebar_secondary_text_color= "#525866" sidebar_border_color= "#ECEFF3" [default.endpoints] api_url="http://localh...
452
hyperswitch
config/promtail.yaml
.yaml
server: http_listen_port: 9080 grpc_listen_port: 0 positions: filename: /tmp/positions.yaml clients: - url: http://loki:3100/loki/api/v1/push scrape_configs: - job_name: router_file_logs static_configs: - targets: - localhost labels: scrape_source: file __path__: /var/log/router/**/...
273
hyperswitch
config/payment_required_fields_v2.toml
.toml
[[required_fields.card.credit.fields.stripe.common]] required_field = "payment_method_data.card.card_number" display_name = "card_number" field_type = "user_card_number" [[required_fields.card.credit.fields.stripe.common]] required_field = "payment_method_data.card.card_exp_year" display_name = "card_exp_year" field_ty...
153
hyperswitch
config/grafana-datasource.yaml
.yaml
apiVersion: 1 datasources: - name: Traces type: tempo access: proxy url: http://tempo:3200/ editable: true isDefault: false - name: Logs type: loki access: proxy url: http://loki:3100/ editable: true isDefault: true - name: Metrics type: prometheus access: proxy ...
213
hyperswitch
config/prometheus.yaml
.yaml
# my global config global: scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute. evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute. # scrape_timeout is set to the global default (10s). # Alertmanager configuration # alerting: # al...
322
hyperswitch
config/docker_compose.toml
.toml
[server] port = 8080 host = "0.0.0.0" request_body_limit = 16_384 # Post request body is limited to 16k. [log.file] enabled = false # Whether you want to store log in log files. path = "logs" # Where to store log files. level = "DEBUG" # What gets into log files. # rotation = "60" # mins # current framewor...
33,209
hyperswitch
config/config.example.toml
.toml
# This is a sample config file whose sole purpose is to enumerate # all the available configuration options, and is intended to be used # solely as a reference. Please copy this file to create a config. # Server configuration [server] port = 8080 host = "127.0.0.1" # This is the grace time (in seconds) given to the ac...
34,199
hyperswitch
config/loki.yaml
.yaml
auth_enabled: false server: http_listen_port: 3100 common: path_prefix: /loki storage: filesystem: chunks_directory: /loki/chunks rules_directory: /loki/rules replication_factor: 1 ring: kvstore: store: inmemory ingester: # These ingester settings are configured for local setup ...
187
hyperswitch
config/redis.conf
.conf
# Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf # Note on units: when memory size is needed, it is possible to specify # it in the usual form of 1k 5GB 4M and so forth: # # 1k...
24,850
hyperswitch
config/grafana.ini
.ini
##################### Grafana Configuration Defaults ##################### # # Do not modify this file in grafana installs # # possible values : production, development app_mode = production # instance name, defaults to HOSTNAME environment variable value or hostname if HOSTNAME var is empty instance_name = ${HOSTNAM...
11,050
hyperswitch
config/tempo.yaml
.yaml
server: http_listen_port: 3200 distributor: receivers: otlp: protocols: grpc: ingester: trace_idle_period: 10s # the length of time after a trace has not received spans to consider it complete and flush it max_block_bytes: 1_000_000 # cut the head block when it hits t...
430
hyperswitch
config/deployments/production.toml
.toml
# Bank redirect configs for allowed banks [bank_config] eps.adyen.banks = "bank_austria,bawag_psk_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_tirol_bank_ag,posojilnica_bank_e_gen,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag" eps.stripe.banks = ...
33,984
hyperswitch
config/deployments/env_specific.toml
.toml
# For explanantion of each config, please refer to the `config/config.example.toml` file [analytics.clickhouse] username = "clickhouse_username" # Clickhouse username password = "clickhouse_password" # Clickhouse password (optional) host = "http://localhost:8123" # Clickhouse host in http(s)://<URL>:<POR...
4,415
hyperswitch
config/deployments/integration_test.toml
.toml
# Bank redirect configs for allowed banks [bank_config] eps.adyen.banks = "bank_austria,bawag_psk_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_tirol_bank_ag,posojilnica_bank_e_gen,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag" eps.stripe.banks = ...
33,025
hyperswitch
config/deployments/drainer.toml
.toml
[drainer] loop_interval = 500 max_read_count = 100 num_partitions = 64 shutdown_interval = 1000 stream_name = "drainer_stream" [secrets_management] secrets_manager = "aws_kms" [secrets_management.aws_kms] key_id = "kms_key_id" region = "kms_region" [encryption_management] encryption_manager = "aws_kms" [encryption_...
303
hyperswitch
config/deployments/sandbox.toml
.toml
# Bank redirect configs for allowed banks [bank_config] eps.adyen.banks = "bank_austria,bawag_psk_ag,dolomitenbank,easybank_ag,erste_bank_und_sparkassen,hypo_tirol_bank_ag,posojilnica_bank_e_gen,raiffeisen_bankengruppe_osterreich,schoellerbank_ag,sparda_bank_wien,volksbank_gruppe,volkskreditbank_ag" eps.stripe.banks = ...
33,918
hyperswitch
config/deployments/README.md
.md
# Configs for deployments ## Introduction This directory contains the configs for deployments of Hyperswitch in different hosted environments. Hyperswitch has **3** components namely, - router - drainer - scheduler - consumer - producer We maintain configs for the `router` component for 3 different environment...
1,600
hyperswitch
config/deployments/scheduler/producer.toml
.toml
# Scheduler settings provides a point to modify the behaviour of scheduler flow. # It defines the streams/queues name and configuration as well as event selection variables [scheduler] consumer_group = "scheduler_group" graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown fo...
296
hyperswitch
config/deployments/scheduler/consumer.toml
.toml
# Scheduler settings provides a point to modify the behaviour of scheduler flow. # It defines the streams/queues name and configuration as well as event selection variables [scheduler] consumer_group = "scheduler_group" graceful_shutdown_interval = 60000 # Specifies how much time to wait while re-attempting shutdown fo...
207
hyperswitch
aws/beta_schema.sql
.sql
-- File: migrations/00000000000000_diesel_initial_setup/up.sql -- This file was automatically created by Diesel to setup helper functions -- and other internal bookkeeping. This file is safe to edit, any future -- changes will be added to existing projects as new migrations. -- Sets up a trigger for the given table...
16,573
hyperswitch
aws/hyperswitch_aws_setup.sh
.sh
#!/bin/bash command_discovery() { type $1 > /dev/null 2> /dev/null if [[ $? != 0 ]]; then echo "\`$1\` command not found" exit 1 fi } command_discovery curl command_discovery aws command_discovery psql echo "Please enter the AWS region (us-east-2): " read REGION < /dev/tty if [ -z "$REGION" ]; then ...
2,703
hyperswitch
aws/hyperswitch_cleanup_setup.sh
.sh
#!/bin/bash command_discovery() { type $1 > /dev/null 2> /dev/null if [[ $? != 0 ]]; then echo "\`$1\` command not found" exit 1 fi } yes_or_no() { read response < /dev/tty case $response in [Yy]* ) return 0 ;; [Nn]* ) return 1 ;; * ) return 1 ;; esac } command_disco...
1,206
hyperswitch
scripts/setup.sh
.sh
#! /usr/bin/env bash set -euo pipefail # ANSI color codes for pretty output RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[0;33m' BLUE='\033[0;34m' BOLD='\033[1m' NC='\033[0m' # No Color # Alias for docker to use podman alias docker=podman # Function to print colorful messages echo_info() { echo -e "${BLUE}[IN...
2,252
hyperswitch
scripts/add_connector.sh
.sh
#! /usr/bin/env bash function find_prev_connector() { self=scripts/add_connector.sh # Comment below line to stop undoing changes when the script is triggered, make sure you undo this change before pushing git checkout $self cp $self $self.tmp # Add new connector to existing list and sort it con...
2,887
hyperswitch
scripts/execute_cypress.sh
.sh
#! /usr/bin/env bash set -euo pipefail # Initialize tmp_file globally tmp_file="" # Define arrays for services, etc. # Read service arrays from environment variables read -r -a payments <<< "${PAYMENTS_CONNECTORS[@]:-}" read -r -a payouts <<< "${PAYOUTS_CONNECTORS[@]:-}" read -r -a payment_method_list <<< "${PAYMENT...
1,337
hyperswitch
scripts/docker_output.sh
.sh
#! /usr/bin/env bash set -euo pipefail # Define the URL to check service availability (adjust HOST and PORT if needed) HOST="localhost" PORT="8080" SERVICE_URL="http://${HOST}:${PORT}/health" MAX_RETRIES=70 RETRY_COUNT=0 # Wait until the service is available or retries are exhausted while ! curl --silent --fail "${S...
342
hyperswitch
scripts/decrypt_browser_data.sh
.sh
#! /usr/bin/env bash # Decrypt the file # --batch to prevent interactive command # --yes to assume "yes" for questions gpg --quiet --batch --yes --decrypt --passphrase="$1" \ --output $HOME/browser_data.tar.gz .github/secrets/browser_data.tar.gz.gpg # Unzip the tarball tar xzf $HOME/browser_data.tar.gz -C $HOME
88
hyperswitch
scripts/prestart_hook.sh
.sh
#! /usr/bin/env bash set -euo pipefail # Define the URL and parameters PLATFORM="docker-compose" WEBHOOK_URL="https://hyperswitch.gateway.scarf.sh/${PLATFORM}" VERSION="unknown" STATUS="initiated" # Send the GET request curl --get "${WEBHOOK_URL}" --data-urlencode "version=${VERSION}" --data-urlencode "status=${STATU...
108
hyperswitch
scripts/poststart_hook.sh
.sh
#! /usr/bin/env bash set -euo pipefail # Configuration PLATFORM="docker-compose" # Change to "helm" or "cdk" as needed VERSION="unknown" STATUS="" SERVER_BASE_URL="http://hyperswitch-server:8080" HYPERSWITCH_HEALTH_URL="${SERVER_BASE_URL}/health" HYPERSWITCH_DEEP_HEALTH_URL="${SERVER_BASE_URL}/health/ready" WEBHOOK_UR...
609
hyperswitch
scripts/ci-checks.sh
.sh
#! /usr/bin/env bash set -euo pipefail # The below script is run on the github actions CI # Obtain a list of workspace members workspace_members="$( cargo metadata --format-version 1 --no-deps \ | jq \ --compact-output \ --monochrome-output \ --raw-output \ '(.workspace_members | sort) as...
1,457
hyperswitch
api-reference-v2/introduction.mdx
.mdx
--- tags: [Getting Started] stoplight-id: 3lmsk7ocvq21v --- # 👋 Welcome to Hyperswitch API Reference Hyperswitch provides a collection of APIs that enable you to process and manage payments. Our APIs accept and return JSON in the HTTP body and return standard HTTP response codes. You can consume the APIs directly us...
824
hyperswitch
api-reference-v2/rust_locker_open_api_spec.yml
.yml
openapi: "3.0.2" info: title: Tartarus - OpenAPI 3.0 description: |- This is the OpenAPI 3.0 specification for the card locker. This is used by the [hyperswitch](https://github.com/juspay/hyperswitch) for storing card information securely. version: "1.0" tags: - name: Key Custodian description: API ...
2,352
hyperswitch
api-reference-v2/mint.json
.json
{ "$schema": "https://mintlify.com/schema.json", "name": "Hyperswitch", "logo": { "dark": "/logo/dark.svg", "light": "/logo/light.svg" }, "favicon": "/favicon.png", "colors": { "primary": "#006DF9", "light": "#006DF9", "dark": "#006DF9", "background": { "dark": "#242F48" } ...
1,205
hyperswitch
api-reference-v2/openapi_spec.json
.json
{ "openapi": "3.0.3", "info": { "title": "Hyperswitch - API Documentation", "description": "\n## Get started\n\nHyperswitch provides a collection of APIs that enable you to process and manage payments.\nOur APIs accept and return JSON in the HTTP body, and return standard HTTP response codes.\n\nYou can con...
147,248
hyperswitch
api-reference-v2/README.md
.md
# Api Reference We use the [openapi specification](https://swagger.io/specification) for the api reference. The openapi file is generated from the code base [openapi_spec.json](openapi_spec.json). ## How to generate the file This file is automatically generated from our CI pipeline when the PR is raised. However if ...
345
hyperswitch
api-reference-v2/logo/dark.svg
.svg
<svg width="545" height="58" viewBox="0 0 545 58" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M27.2375 54.3079C25.9366 54.3441 24.6718 54.2355 23.3708 54.0545C19.8655 53.5477 16.577 52.4255 13.5414 50.5792C6.81987 46.5246 2.51952 40.6238 0.748782 32.8766C0.35127 31.1...
14,233
hyperswitch
api-reference-v2/logo/light.svg
.svg
<svg width="545" height="58" viewBox="0 0 545 58" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M27.0673 54.3079C25.7664 54.3441 24.5016 54.2355 23.2006 54.0545C19.6953 53.5477 16.4068 52.4255 13.3713 50.5792C6.6497 46.5246 2.34935 40.6238 0.578616 32.8766C0.181104 31....
14,267
hyperswitch
api-reference-v2/essentials/go-live.mdx
.mdx
--- title: Go-live Checklist --- Refer to this checklist for a seamless transition as you prepare to go live with your integration. <Warning> The connector configurations set up in the sandbox need to be replicated on the Hyperswitch production account. </Warning> ### Signing of Hyperswitch services agreement - [ ]...
632
hyperswitch
api-reference-v2/essentials/error_codes.mdx
.mdx
--- title: Error Codes --- Hyperswitch uses Error codes, types, and messages to communicate errors during API calls. There are three types of error codes: | Error Code | Type | Description | | ---------- | --------------------- | ----------------------...
2,996
hyperswitch
api-reference-v2/essentials/rate_limit.mdx
.mdx
--- title: Rate Limits --- The Hyperswitch API has multiple checks in place to enhance its stability when faced with sudden surges of incoming traffic. Merchants who send numerous requests in rapid succession could encounter error responses indicated by the status code 429. <Warning> The default rate limit for all ...
373
hyperswitch
api-reference-v2/api-reference/refunds/refunds--create.mdx
.mdx
--- openapi: post /v2/refunds ---
12
hyperswitch
api-reference-v2/api-reference/connector-account/connector-account--delete.mdx
.mdx
--- openapi: delete /v2/connector-accounts/{id} ---
16
hyperswitch
api-reference-v2/api-reference/connector-account/connector-account--update.mdx
.mdx
--- openapi: put /v2/connector-accounts/{id} ---
16
hyperswitch
api-reference-v2/api-reference/connector-account/connector-account--create.mdx
.mdx
--- openapi: post /v2/connector-accounts ---
14
hyperswitch
api-reference-v2/api-reference/connector-account/connector-account--retrieve.mdx
.mdx
--- openapi: get /v2/connector-accounts/{id} ---
16
hyperswitch
api-reference-v2/api-reference/payment-method-session/payment-method-session--list-payment-methods.mdx
.mdx
--- openapi: get /v2/payment-method-session/:id/list-payment-methods ---
19
hyperswitch
api-reference-v2/api-reference/payment-method-session/payment-method-session--confirm-a-payment-method-session.mdx
.mdx
--- openapi: post /v2/payment-method-session/:id/confirm ---
17
hyperswitch
api-reference-v2/api-reference/payment-method-session/payment-method-session--delete-a-saved-payment-method.mdx
.mdx
--- openapi: delete /v2/payment-method-session/:id ---
15
hyperswitch
api-reference-v2/api-reference/payment-method-session/payment-method-session--retrieve.mdx
.mdx
--- openapi: get /v2/payment-method-session/:id ---
15
hyperswitch
api-reference-v2/api-reference/payment-method-session/payment-method-session--create.mdx
.mdx
--- openapi: post /v2/payment-method-session ---
13
hyperswitch
api-reference-v2/api-reference/payment-method-session/payment-method-session--update-a-saved-payment-method.mdx
.mdx
--- openapi: put /v2/payment-method-session/:id/update-saved-payment-method ---
20
hyperswitch
api-reference-v2/api-reference/profile/profile--update.mdx
.mdx
--- openapi: put /v2/profiles/{id} ---
14
hyperswitch
api-reference-v2/api-reference/profile/profile--create.mdx
.mdx
--- openapi: post /v2/profiles ---
12
hyperswitch
api-reference-v2/api-reference/profile/merchant-connector--list.mdx
.mdx
--- openapi: get /v2/profiles/{id}/connector-accounts ---
18
hyperswitch
api-reference-v2/api-reference/profile/profile--update-default-fallback-routing-algorithm.mdx
.mdx
--- openapi: patch /v2/profiles/{id}/fallback-routing ---
17
hyperswitch
api-reference-v2/api-reference/profile/profile--retrieve-default-fallback-routing-algorithm.mdx
.mdx
--- openapi: get /v2/profiles/{id}/fallback-routing ---
17
hyperswitch
api-reference-v2/api-reference/profile/profile--retrieve-active-routing-algorithm.mdx
.mdx
--- openapi: get /v2/profiles/{id}/routing-algorithm ---
18
hyperswitch
api-reference-v2/api-reference/profile/profile--deactivate-routing-algorithm.mdx
.mdx
--- openapi: patch /v2/profiles/{id}/deactivate-routing-algorithm ---
20
hyperswitch
api-reference-v2/api-reference/profile/profile--activate-routing-algorithm.mdx
.mdx
--- openapi: patch /v2/profiles/{id}/activate-routing-algorithm ---
19
hyperswitch
api-reference-v2/api-reference/profile/profile--retrieve.mdx
.mdx
--- openapi: get /v2/profiles/{id} ---
14
hyperswitch
api-reference-v2/api-reference/payments/payments--session-token.mdx
.mdx
--- openapi: post /v2/payments/{payment_id}/create-external-sdk-tokens ---
22
hyperswitch
api-reference-v2/api-reference/payments/payments--update-intent.mdx
.mdx
--- openapi: put /v2/payments/{id}/update-intent ---
18
hyperswitch
api-reference-v2/api-reference/payments/payments--payment-methods-list.mdx
.mdx
--- openapi: get /v2/payments/{id}/payment-methods ---
18
hyperswitch
api-reference-v2/api-reference/payments/payments--get-intent.mdx
.mdx
--- openapi: get /v2/payments/{id}/get-intent ---
18
hyperswitch
api-reference-v2/api-reference/payments/payments--create-and-confirm-intent.mdx
.mdx
--- openapi: post /v2/payments ---
12
hyperswitch
api-reference-v2/api-reference/payments/payments--create-intent.mdx
.mdx
--- openapi: post /v2/payments/create-intent ---
15
hyperswitch
api-reference-v2/api-reference/payments/payments--list.mdx
.mdx
--- openapi: get /v2/payments/list ---
13
hyperswitch
api-reference-v2/api-reference/payments/payments--get.mdx
.mdx
--- openapi: get /v2/payments/{id} ---
14
hyperswitch
api-reference-v2/api-reference/payments/payments--confirm-intent.mdx
.mdx
--- openapi: post /v2/payments/{id}/confirm-intent ---
18
hyperswitch
api-reference-v2/api-reference/merchant-connector-account/connector-account--update.mdx
.mdx
--- openapi: put /v2/connector-accounts/{id} ---
16
hyperswitch
api-reference-v2/api-reference/merchant-connector-account/connector-account--create.mdx
.mdx
--- openapi: post /v2/connector-accounts ---
14
hyperswitch
api-reference-v2/api-reference/merchant-connector-account/merchant-connector--delete.mdx
.mdx
--- openapi: delete /v2/connector-accounts/{id} ---
16
hyperswitch
api-reference-v2/api-reference/merchant-connector-account/connector-account--retrieve.mdx
.mdx
--- openapi: get /v2/connector-accounts/{id} ---
16
hyperswitch
api-reference-v2/api-reference/api-key/api-key--retrieve.mdx
.mdx
--- openapi: get /v2/api-keys/{id} ---
14
hyperswitch
api-reference-v2/api-reference/api-key/api-key--create.mdx
.mdx
--- openapi: post /v2/api-keys ---
12
hyperswitch
api-reference-v2/api-reference/api-key/api-key--revoke.mdx
.mdx
--- openapi: delete /v2/api-keys/{id} ---
14
hyperswitch
api-reference-v2/api-reference/api-key/api-key--update.mdx
.mdx
--- openapi: put /v2/api-keys/{id} ---
14
hyperswitch
api-reference-v2/api-reference/api-key/api-key--list.mdx
.mdx
--- openapi: get /v2/api-keys/list ---
13
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-methods--payment-methods-list.mdx
.mdx
--- openapi: get /v2/payment-methods/{id}/list-enabled-payment-methods ---
21
hyperswitch
api-reference-v2/api-reference/payment-methods/list-payment-methods-for-a-customer.mdx
.mdx
--- openapi: get /v2/customers/{id}/saved-payment-methods ---
19
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--create.mdx
.mdx
--- openapi: post /v2/payment-methods ---
13
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--retrieve.mdx
.mdx
--- openapi: get /v2/payment-methods/{id} ---
15
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--payment-methods-list.mdx
.mdx
--- openapi: get /v2/payment-methods/{id}/list-enabled-payment-methods ---
21
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--create-intent.mdx
.mdx
--- openapi: post /v2/payment-methods/create-intent ---
16
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--update.mdx
.mdx
--- openapi: patch /v2/payment-methods/{id}/update-saved-payment-method ---
21
hyperswitch
api-reference-v2/api-reference/payment-methods/list-customer-saved-payment-methods-for-a-payment.mdx
.mdx
--- openapi: get /v2/payments/{id}/saved-payment-methods ---
19
hyperswitch
api-reference-v2/api-reference/payment-methods/list-saved-payment-methods-for-a-customer.mdx
.mdx
--- openapi: get /v2/customers/{id}/saved-payment-methods ---
19
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--confirm-intent.mdx
.mdx
--- openapi: post /v2/payment-methods/{id}/confirm-intent ---
19
hyperswitch
api-reference-v2/api-reference/payment-methods/payment-method--delete.mdx
.mdx
--- openapi: delete /v2/payment-methods/{id} ---
15
hyperswitch
api-reference-v2/api-reference/routing/routing--retrieve.mdx
.mdx
--- openapi: get /v2/routing-algorithm/{id} ---
16