mutation

walletLinkInitiate

Link wallet for the aggregator for processing of payment.
Arguments
walletLinkRequestSchemaInput
WalletLinkRequestSchemaInput
Wallet Link Request schema.
Response
data
JSON
Response received from aggregator.
success
Boolean
Success/Failure of the API call.
Mutation
1mutation walletLinkInitiate(
2 $walletLinkRequestSchemaInput: WalletLinkRequestSchemaInput
3) {
4 walletLinkInitiate(
5 walletLinkRequestSchemaInput: $walletLinkRequestSchemaInput
6 ) {
7 data
8 success
9 }
10}
Try it
Input Variables
1{
2 "walletLinkRequestSchemaInput": {
3 "aggregator": "aggregator",
4 "mobile": "mobile",
5 "wallet_code": "wallet_code"
6 }
7}
Response
1{
2 "walletLinkInitiate": {
3 "data": {},
4 "success": true
5 }
6}