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 setWalletAddressName {
setWalletAddressName(input: { addressId: 17987, uname: "my_username", walletAddressName: "new_name_wallet" }) {
walletAddress {
address
addressName
rowId
paymentSplitPercentage
walletId
}
}
}
Response
{
"data": {
"setWalletAddressName": {
"walletAddress": {
"address": "bc1quzlsqnwsnacrup78rr7ye86mdc4qvh2ccy0jcd",
"addressName": "new_name_wallet",
"rowId": 17987,
"paymentSplitPercentage": 0,
"walletId": 16897030
}
}
}
}