Set the wallet address for a specific wallet
⚠️
To run this query you need the RowId parameter. To find this one you need to first use our Get Wallet Address command.
Example
mutation MyMutation {
setWalletAddressPayoutAddress(
input: { addressHash: "3FZbgi29cpjq2GjdwV8eyHuJJnkLtktZc5", addressId: 19688, uname: "my_username" }
) {
walletAddress {
address
addressName
paymentSplitPercentage
walletId
rowId
}
}
}
Response
{
"data": {
"setWalletAddressPayoutAddress": {
"walletAddress": {
"address": "3FZbgi29cpjq2GjdwV8eyHuJJnkLtktZc5",
"addressName": "wallet_with_new_name",
"paymentSplitPercentage": 0,
"walletId": 16897030,
"rowId": 19688
}
}
}
}