LISTING_DEACTIVATED

When a listing is deactivated in EverReal, the below payload is submitted as a notification.

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


interface IListingDeactivatedAction {
  id: string;
  title: string;
  companyId: string;
  type: LISTING_TYPE;
  listingResponsible: {
    id: string;
    email: string;
  };
}

Last updated