updateUserBillingAddress
Update the billing address of the account user (the authenticated user).
Arguments
New billing address for account.
Returns
UpdateUserAddressMutationUpdate the billing address of the account user (the authenticated user).
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation UpdateUserBillingAddress(
$accountNumber: String!,
$address: UpdateAddressInput!
) {
updateUserBillingAddress(
accountNumber: $accountNumber,
address: $address
) {
account {
...AccountTypeFragment
}
}
}
Variables
{
"accountNumber": "A-A5FE4FDA",
"address": UpdateAddressInput
}
Response
{
"data": {
"updateUserBillingAddress": {
"account": AccountType
}
}
}