mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-03 05:17:02 +08:00
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
55 lines
977 B
JavaScript
55 lines
977 B
JavaScript
export const connectorDetails = {
|
|
priorityRouting: {
|
|
Request: {
|
|
name: "priority routing",
|
|
description: "some desc",
|
|
algorithm: {
|
|
type: "priority",
|
|
data: [],
|
|
},
|
|
profile_id: "{{profile_id}}",
|
|
},
|
|
Response: {
|
|
status: 200,
|
|
body: {},
|
|
},
|
|
},
|
|
jwt: {
|
|
Request: {},
|
|
Response: {
|
|
status: 200,
|
|
body: {},
|
|
},
|
|
},
|
|
volumeBasedRouting: {
|
|
Request: {
|
|
name: "volume routing",
|
|
description: "some desc",
|
|
algorithm: {
|
|
type: "volume_split",
|
|
data: [],
|
|
},
|
|
profile_id: "{{profile_id}}",
|
|
},
|
|
Response: {
|
|
status: 200,
|
|
body: {},
|
|
},
|
|
},
|
|
ruleBasedRouting: {
|
|
Request: {
|
|
name: "Rule Based routing",
|
|
description: "Rule Based routing",
|
|
algorithm: {
|
|
type: "advanced",
|
|
data: [],
|
|
},
|
|
profile_id: "{{profile_id}}",
|
|
},
|
|
Response: {
|
|
status: 200,
|
|
body: {},
|
|
},
|
|
},
|
|
};
|