updatePaymentMethod

This mutation updates the payment method.

Sample mutation

mutation{
  updatePaymentMethod(paymentMethodID:"b2f5cdfd-3550-47ab-a5a2-e21731724ea7" orgID:"8fb128bd-f55d-4bcc-8b6c-0beb684e4d4e" input:{
    paymentType:ACH
  })
}

Arguments

NameTypeDescriptionRequired
paymentMethodIDUUID1The payment method ID.Yes
orgIDUUID1The organization ID.Yes
inputObjectThe input for payment method update.Yes

Return

NameTypeDescription
N/ABooleanConfirmation whether payment method has been updated.

Mutation Schema

type mutation{

  updatePaymentMethod(paymentMethodID: UUID1! orgID: UUID1! input: PaymentMethodUpdateInput!): Boolean!

}