initiateAgreementRescission
Initiate an agreement rescission.
This mutation allows a user to start the rescission process for an agreement. A
rescission will only be allowed if the agreement is eligible.
Arguments
Input fields for initiating an agreement rescission.
Returns
InitiateAgreementRescission Initiate an agreement rescission.
This mutation allows a user to start the rescission process for an agreement. A
rescission will only be allowed if the agreement is eligible.
Possible Errors
Allowed Viewers
Required Permissions
Can initiate agreement rescissions Can query agreements Can query agreement rescissionsQuery Complexity
6Examples
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 InitiateAgreementRescission($input: InitiateAgreementRescissionInput!) {
initiateAgreementRescission(input: $input) {
agreementRescission {
...AgreementRescissionTypeFragment
}
}
}
Variables
{
"input": InitiateAgreementRescissionInput
}
Response
{
"data": {
"initiateAgreementRescission": {
"agreementRescission": AgreementRescissionType
}
}
}