> 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-events/listing_published_to_channel.md).

# LISTING\_PUBLISHED\_TO\_CHANNEL

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


interface IListingPublishedAction {
  id: string;
  title: string;
  companyId: string;
  type: LISTING_TYPE;
  channels: {
    type: string;
    internalId: string;
    status?: string;
    placementType?: {
      type: string;
      createdAt: string;
    };
    isTypeInvestment?: boolean;
  }[];
  listingResponsible: {
    id: string;
    email: string;
  };
}
```
