> For the complete documentation index, see [llms.txt](https://api-docs.everreal.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.everreal.co/webhooks/protocol-events/move_out_protocol_completed.md).

# MOVE\_OUT\_PROTOCOL\_COMPLETED

Payload submitted when EverReal send a notification for MOVE\_OUT\_PROTOCOL\_COMPLETED

```typescript
interface IProtocolAction {
    listing?: {
       id?: string;
       title?: string;
    },
    unit: {
        unitId: string;
        propertyId: string;
        name: string;
        objectId: string;
      },
    property: {
        unitId: string;
        propertyId: string;
        name: string;
        objectId: string;
    },
    tenant: {
     id: string;
     email: string;
     firstName: string;
     lastName: string;
    },
    file: {
        name?: string;
        resourceId?: string;
        resourcePath?: string;
        size?: number;
    },
    protocolId: string;
    documentId: string;
    tenantId: string;
    companyId: string;
    protocolType?: string;
 }
```
