revokeContract
Revoke an existing contract.
Arguments
Returns
RevokeContractOutput!Possible Errors
- KT-CT-10003: Contract not found.
- KT-CT-10022: Contract already terminated.
- KT-CT-10023: Contract is already revoked.
- KT-CT-10024: Contract already expired.
- KT-CT-10032: Contract has already started.
- KT-CT-10041: Contract is already rescinded.
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-7899: An internal error occurred.
Allowed Viewers
Query 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 RevokeContract($input: RevokeContractInput!) {
revokeContract(input: $input) {
contract {
...ContractFragment
}
}
}
Variables
{
"input": RevokeContractInput
}
Response
{
"data": {
"revokeContract": {
"contract": Contract
}
}
}