Operation Id:
payments/repayment/post [Official Documentaction]
Methods
- source_id Integer
- source_type String
- value Number
- payment_form_id Integer
- account String
- client_account String
- other Object
Examples
This function creates a payment repayment with a source ID of 1, source type of "return", a repayment value of $100, and a payment form ID of 27.
const result = await idosellRequest.postPaymentsRepayment
.source_id(1)
.source_type("return")
.value(100)
.payment_form_id(27)
.exec()