> 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/listing-contracting-events/listing_contract_flow_withdrawn.md).

# LISTING\_CONTRACT\_FLOW\_WITHDRAWN

```typescript
interface IWebhookDispatcher<IListingContractFlowWithdrawnAction> {
  uuid: string;
  operation: string;
  subdomain: string;
  language: string;
  createdAt: Date;
  data: IListingContractFlowWithdrawnAction;
}


interface IListingContractFlowWithdrawnAction {
  id: string;
  metadata?: {
    unitId?: string;
    listingId?: string;
    candidateId?: string;
  };
  contractFlowType: CONTRACT_FLOW_TYPE;
  status?: CONTRACT_STATUS;
}
```
