GET
/
routing
curl --request GET \
  --url https://sandbox.hyperswitch.io/routing \
  --header 'api-key: <api-key>'
{
  "merchant_id": "<string>",
  "active_id": "<string>",
  "records": [
    {
      "id": "<string>",
      "profile_id": "<string>",
      "name": "<string>",
      "kind": "single",
      "description": "<string>",
      "created_at": 123,
      "modified_at": 123,
      "algorithm_for": "payment",
      "decision_engine_routing_id": "<string>"
    }
  ]
}

Authorizations

api-key
string
header
required

Use the API key created under your merchant account from the HyperSwitch dashboard. API key is used to authenticate API requests from your merchant server only. Don't expose this key on a website or embed it in a mobile application.

Query Parameters

limit
integer | null

The number of records to be returned

Required range: x >= 0
offset
integer | null

The record offset from which to start gathering of results

Required range: x >= 0
profile_id
string | null

The unique identifier for a merchant profile

Response

200
application/json

Successfully fetched routing configs

The response is of type object.