Get aggregator secret key of all payment gateways utilized for payments when using the SDK for the payment gateway.
Arguments
refresh
BooleanSelect `true` to remove temporary cache files on payment gateway and replace with the latest one.
xapitoken
StringBasic auth token.
Response
ccavenue
CCAvenueAggregatorConfigCCAvenue config detail schema.
env
String!Required
Environment i.e Live or Test.
success
Boolean!Required
Api response was successful or not.
juspay
JusPayAggregatorConfigJuspay config detail schema.
mswipe
MSwipeAggregatorConfigMswipe config detail schema.
payumoney
PayuMoneyAggregatorConfigPayUMoney config detail schema.
razorpay
RazorPayAggregatorConfigRazorpay config detail schema.
rupifi
RupifyAggregatorConfigRupifi config detail schema.
Simpl config detail schema.
stripe
StripeAggregatorConfigStripe config detail schema.
Query
1query aggregatorsConfig($refresh: Boolean, $xapitoken: String) {2 aggregatorsConfig(refresh: $refresh, xapitoken: $xapitoken) {3 ccavenue {4 api5 config_type6 key7 merchant_id8 merchant_key9 pin10 sdk11 secret12 user_id13 verify_api14 }15 env16 success17 juspay {18 api19 config_type20 key21 merchant_id22 merchant_key23 sdk24 secret25 user_id26 verify_api27 pin28 }29 mswipe {30 config_type31 key32 merchant_id33 pin34 sdk35 secret36 user_id37 verify_api38 api39 merchant_key40 }41 payumoney {42 config_type43 key44 sdk45 secret46 user_id47 verify_api48 merchant_id49 api50 pin51 merchant_key52 }53 razorpay {54 api55 config_type56 key57 sdk58 secret59 pin60 merchant_key61 verify_api62 user_id63 merchant_id64 vpa65 }66 rupifi {67 config_type68 key69 merchant_id70 secret71 user_id72 verify_api73 api74 pin75 merchant_key76 sdk77 }78 simpl {79 config_type80 key81 secret82 sdk83 api84 pin85 merchant_key86 verify_api87 merchant_id88 user_id89 }90 stripe {91 config_type92 key93 sdk94 secret95 user_id96 verify_api97 merchant_id98 merchant_key99 api100 pin101 }102 }103}
Try it
Input Variables
1{2 "refresh": true,3 "xapitoken": "xapitoken"4}
Response
1{2 "aggregatorsConfig": {3 "ccavenue": {4 "api": "api",5 "config_type": "config_type",6 "key": "key",7 "merchant_id": "merchant_id",8 "merchant_key": "merchant_key",9 "pin": "pin",10 "sdk": true,11 "secret": "secret",12 "user_id": "user_id",13 "verify_api": "verify_api"14 },15 "env": "env",16 "success": true,17 "juspay": {18 "api": "api",19 "config_type": "config_type",20 "key": "key",21 "merchant_id": "merchant_id",22 "merchant_key": "merchant_key",23 "sdk": true,24 "secret": "secret",25 "user_id": "user_id",26 "verify_api": "verify_api",27 "pin": "pin"28 },29 "mswipe": {30 "config_type": "config_type",31 "key": "key",32 "merchant_id": "merchant_id",33 "pin": "pin",34 "sdk": true,35 "secret": "secret",36 "user_id": "user_id",37 "verify_api": "verify_api",38 "api": "api",39 "merchant_key": "merchant_key"40 },41 "payumoney": {42 "config_type": "config_type",43 "key": "key",44 "sdk": true,45 "secret": "secret",46 "user_id": "user_id",47 "verify_api": "verify_api",48 "merchant_id": "merchant_id",49 "api": "api",50 "pin": "pin",51 "merchant_key": "merchant_key"52 },53 "razorpay": {54 "api": "api",55 "config_type": "config_type",56 "key": "key",57 "sdk": true,58 "secret": "secret",59 "pin": "pin",60 "merchant_key": "merchant_key",61 "verify_api": "verify_api",62 "user_id": "user_id",63 "merchant_id": "merchant_id",64 "vpa": "vpa"65 },66 "rupifi": {67 "config_type": "config_type",68 "key": "key",69 "merchant_id": "merchant_id",70 "secret": "secret",71 "user_id": "user_id",72 "verify_api": "verify_api",73 "api": "api",74 "pin": "pin",75 "merchant_key": "merchant_key",76 "sdk": true77 },78 "simpl": {79 "config_type": "config_type",80 "key": "key",81 "secret": "secret",82 "sdk": true,83 "api": "api",84 "pin": "pin",85 "merchant_key": "merchant_key",86 "verify_api": "verify_api",87 "merchant_id": "merchant_id",88 "user_id": "user_id"89 },90 "stripe": {91 "config_type": "config_type",92 "key": "key",93 "sdk": true,94 "secret": "secret",95 "user_id": "user_id",96 "verify_api": "verify_api",97 "merchant_id": "merchant_id",98 "merchant_key": "merchant_key",99 "api": "api",100 "pin": "pin"101 }102 }103}
Was this section helpful?