Arguments
walletLinkRequestSchemaInput
WalletLinkRequestSchemaInputWallet Link Request schema.
Mutation
1mutation walletLinkInitiate(2 $walletLinkRequestSchemaInput: WalletLinkRequestSchemaInput3) {4 walletLinkInitiate(5 walletLinkRequestSchemaInput: $walletLinkRequestSchemaInput6 ) {7 data8 success9 }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": true5 }6}
Was this section helpful?