Request: DELETE api/properties/:id/remove_invitations
Security Header
Once you get the access_token pass authorization header back to all subsequent requests
- Name: Authorization
- Value: Bearer 3d48f9ccf28d47619d323ff7e4d96a59d1ac34eaf9d859c592a44cff1fb49d33
Body
email - Email of the resident to move out
{
    "email": "[email protected]"
}To move out all invitation and end the lease
{
    "email": "all"
}Response
Either success or error, as shown below
{
    "success": true,
    "message": "Removed Invitation(s)"
}{
    "success": false,
    "message": "Invitation not found"
}