pauseDunning
Pause the dunning process for an account.
Arguments
Input variables needed for pausing a dunning process for an account.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-11301: Account not in a dunning process for the given path name.
- KT-CT-11302: No active dunning process found.
- KT-CT-11303: Multiple active dunning processes found.
- KT-CT-11304: Dunning pause process failed verifying the dates.
- KT-CT-11305: Pausing the dunning process failed.
- KT-CT-4178: No account found with given account number.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Required Permissions
Can update dunning processQuery 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 PauseDunning($input: PauseDunningInputType!) {
pauseDunning(input: $input) {
pauseCreated
}
}
Variables
{
"input": PauseDunningInputType
}
Response
{
"data": {
"pauseDunning": {
"pauseCreated": true
}
}
}