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

Name

Type

Description

Required

paymentMethodID

UUID1

The payment method ID.

Yes

orgID

UUID1

The organization ID.

Yes

input

Object

The input for payment method update.

Yes

Return

Name

Type

Description

N/A

Boolean

Confirmation whether payment method has been updated.

Mutation Schema

type mutation{

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

}