storeRefundBankAccount
Stores bank account details for refunds.
Arguments
Returns
StoreRefundBankAccountResponse!Returned when a customer stores a refund bank account from their MyPage.
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 StoreRefundBankAccount($input: NewRefundBankAccountDetailsInput) {
storeRefundBankAccount(input: $input) {
... on CommonError {
...CommonErrorFragment
}
... on RefundBankAccountStored {
...RefundBankAccountStoredFragment
}
}
}
Variables
{
"input": NewRefundBankAccountDetailsInput
}
Response
{
"data": {
"storeRefundBankAccount": CommonError
}
}