query

aggregatorsConfig

Get aggregator secret key of all payment gateways utilized for payments when using the SDK for the payment gateway.
Arguments
refresh
Boolean
Select `true` to remove temporary cache files on payment gateway and replace with the latest one.
xapitoken
String
Basic auth token.
Response
CCAvenue config detail schema.
Required
Environment i.e Live or Test.
success
Boolean!
Required
Api response was successful or not.
Juspay config detail schema.
Mswipe config detail schema.
PayUMoney config detail schema.
Razorpay config detail schema.
Rupifi config detail schema.
Simpl config detail schema.
Stripe config detail schema.
Query
1query aggregatorsConfig($refresh: Boolean, $xapitoken: String) {
2 aggregatorsConfig(refresh: $refresh, xapitoken: $xapitoken) {
3 ccavenue {
4 api
5 config_type
6 key
7 merchant_id
8 merchant_key
9 pin
10 sdk
11 secret
12 user_id
13 verify_api
14 }
15 env
16 success
17 juspay {
18 api
19 config_type
20 key
21 merchant_id
22 merchant_key
23 sdk
24 secret
25 user_id
26 verify_api
27 pin
28 }
29 mswipe {
30 config_type
31 key
32 merchant_id
33 pin
34 sdk
35 secret
36 user_id
37 verify_api
38 api
39 merchant_key
40 }
41 payumoney {
42 config_type
43 key
44 sdk
45 secret
46 user_id
47 verify_api
48 merchant_id
49 api
50 pin
51 merchant_key
52 }
53 razorpay {
54 api
55 config_type
56 key
57 sdk
58 secret
59 pin
60 merchant_key
61 verify_api
62 user_id
63 merchant_id
64 vpa
65 }
66 rupifi {
67 config_type
68 key
69 merchant_id
70 secret
71 user_id
72 verify_api
73 api
74 pin
75 merchant_key
76 sdk
77 }
78 simpl {
79 config_type
80 key
81 secret
82 sdk
83 api
84 pin
85 merchant_key
86 verify_api
87 merchant_id
88 user_id
89 }
90 stripe {
91 config_type
92 key
93 sdk
94 secret
95 user_id
96 verify_api
97 merchant_id
98 merchant_key
99 api
100 pin
101 }
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": true
77 },
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}