updateAgreementRescission
Update an agreement rescission.
This mutation allows updating the status and tracking information for an agreement rescission process. Updates are not allowed if the rescission has already been completed.
Arguments
Input fields for updating an agreement rescission.
Returns
UpdateAgreementRescissionUpdate an agreement rescission.
This mutation allows updating the status and tracking information for an agreement rescission process. Updates are not allowed if the rescission has already been completed.
Examples
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 UpdateAgreementRescission($input: UpdateAgreementRescissionInput!) {
updateAgreementRescission(input: $input) {
agreementRescission {
...AgreementRescissionTypeFragment
}
}
}
Variables
{
"input": UpdateAgreementRescissionInput
}
Response
{
"data": {
"updateAgreementRescission": {
"agreementRescission": AgreementRescissionType
}
}
}