LISTING_ARCHIVED

When a listing is archived or auto-archived in EverReal, the below payload is submitted as a notification.

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

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

Last updated