allowRepaymentSubmission
Allow a repayment to be submitted.
Arguments
Input variable needed for allowing repayment submission.
Possible Errors
Allowed Viewers
Required Permissions
Can create repayment interventionsQuery 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 AllowRepaymentSubmission($input: RepaymentInput!) {
allowRepaymentSubmission(input: $input) {
repaymentId
repaymentIntervention {
...RepaymentInterventionTypeFragment
}
}
}
Variables
{
"input": RepaymentInput
}
Response
{
"data": {
"allowRepaymentSubmission": {
"repaymentId": "42290301",
"repaymentIntervention": RepaymentInterventionType
}
}
}