> 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_started.md).

# LISTING\_CONTRACT\_FLOW\_STARTED

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


interface IListingContractFlowStartedAction {
  id: string;
  contractTemplateId?: string;
  metadata?: {
    unitId?: string;
    listingId?: string;
    candidateId?: string;
  };
  contractData?: any;
  status?: CONTRACT_STATUS;
  contractFlowType: CONTRACT_FLOW_TYPE;
  contractFile?: {
    name?: string;
    resourcePath?: string;
    order?: number;
    size?: number;
    type?: string;
  };
}
```
