canRescindAgreement
Check if an agreement can be rescinded. Returns false if the rescission deadline has passed, or if a rescission already exists for the agreement.
Arguments
The ID of the agreement to check.
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.
query CanRescindAgreement($agreementId: Int!) {
canRescindAgreement(agreementId: $agreementId)
}
Variables
{
"agreementId": 50078212
}
Response
{
"data": {
"canRescindAgreement": true
}
}