Skip to main content

Arguments

input : MoveOutInput! required

Returns

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.

Allowed Viewers

Customer Partner User Third party

Required Permissions

Can process move outs

Query Complexity

1

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

mutation PerformMoveOut($input: MoveOutInput!) { performMoveOut(input: $input) { account { ...AccountInterfaceFragment } newAccount { ...AccountInterfaceFragment } } }

Variables

{ "input": MoveOutInput }

Response

{ "data": { "performMoveOut": { "account": AccountInterface, "newAccount": AccountInterface } } }