cancelPayment

This mutation cancels payment by ID. This can be called by an organization admin.

Arguments

NameTypeDescriptionRequired
paymentIDUUID1The payment ID.Yes
orgIDUUID1The organization ID.Yes

Return

NameTypeDescription
N/ABooleanConfirmation whether the payment is canceled.

Mutation Schema

type mutation{

  cancelPayment(paymentID: UUID1! orgID: UUID1!): Boolean!

}