Refund deposits

Return the funds back to the original sender

Refund deposit by ID

mutation {
  refundDeposit(
    id: "6053d4e0e3bc655e0598a742"
    input: { amount: 10, reason: "sent by mistake" }
  ) {
    success
    code
    message
  }
}

Last updated