LISTING_CONTRACT_FLOW_WITHDRAWN

When a contract is withdrawn in EverReal, the below payload is submitted as a notification.

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;
}

Last updated