cancelPayment

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

Arguments

Name

Type

Description

Required

paymentID

UUID1

The payment ID.

Yes

orgID

UUID1

The organization ID.

Yes

Return

Name

Type

Description

N/A

Boolean

Confirmation whether the payment is canceled.

Mutation Schema

type mutation{

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

}