approveRepayment
Approve a repayment.
Arguments
Input fields for approving a repayment.
Possible Errors
Allowed Viewers
Required Permissions
Can approve repaymentsQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation ApproveRepayment($input: ApproveRepaymentInput!) {
approveRepayment(input: $input) {
repayment {
...AccountRepaymentTypeFragment
}
}
}
Variables
{
"input": ApproveRepaymentInput
}
Response
{
"data": {
"approveRepayment": {
"repayment": AccountRepaymentType
}
}
}