performMoveOut
Perform a move out of a property for an account.
Optionally provide details of the new tenant and a property to perform a move in to.
Arguments
Returns
PerformMoveOutPerform a move out of a property for an account.
Optionally provide details of the new tenant and a property to perform a move in to.
Possible Errors
- KT-CT-1113: Disabled GraphQL field requested.
- KT-CT-7899: An internal error occurred.
- KT-GB-6624: An error occurred when trying to process this house move.
- KT-GB-6625: An error occurred when trying to process this house move.
- KT-GB-6626: There was an error processing the PSR data.
- KT-GB-6627: There are missing agent appointments.
Allowed Viewers
Required Permissions
Can process move outsQuery 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 PerformMoveOut($input: MoveOutInput!) {
performMoveOut(input: $input) {
account {
...AccountInterfaceFragment
}
newAccount {
...AccountInterfaceFragment
}
}
}
Variables
{
"input": MoveOutInput
}
Response
{
"data": {
"performMoveOut": {
"account": AccountInterface,
"newAccount": AccountInterface
}
}
}