Plunk's system event list for automation workflow

Share

Plunk does not show system event list in their docs because the feature is new(? idk) so we need to find them on their code.

These are confirmed event list you can use for workflow against the actual Plunk source code — here's the answer:

"System events" = Plunk's reserved, auto-tracked events

Plunk splits events into two kinds:

  • Custom events — ones you track with POST /v1/track.
  • System events — a fixed set Plunk fires itself on a contact when something happens. The code calls these "reserved" events: you can't create or delete them via the API (there's an isReservedEvent() guard in EventService.ts that throws Cannot delete reserved system event), but you can use them as workflow triggers exactly like custom events.

So in the Workflows trigger table, the EVENT trigger fires on "custom event via /v1/track, system events such as email.received or contact.subscribed, or segment entry/exit events." That single table cell is the only place the phrase "system events" appears in the prose — which is almost certainly why you couldn't find it.

The complete list (from the source, not the docs)

From the webhooks event table + the isReservedEvent() patterns in apps/api/src/services/EventService.ts:

Group Events
Email email.sent, email.delivery, email.open (first open), email.click (first click), email.bounce, email.complaint, email.received (inbound — requires inbound-email setup)
Contact contact.subscribed, contact.unsubscribed
Segment segment.<name>.entry, segment.<name>.exit

Reserved pattern in code: email.*, contact.subscribed / contact.unsubscribed, and segment.*.entry / segment.*.exit.

But be careful of contact.subscribed is not tracked when just adding contact. It is tracked only when contact subscribed from unsubscribed status ( e.g., it happens on a subscription preferences page ).

So we implemented custom event signup in the end.

Sources:

Read more

サービス更新履歴

ここでは、LiveQのサービス・製品への変更を全て紹介しております。 このページは大きな変更があった場合に更新されます。 いつごろにどのような機能がリリースされたかが分かります。 2026年6月: 高速化・安定化 * 5月よりサーバーおよびアプリケーションの大型リニューアルに取り組み、6月に読み込み速度の向上や、大規模アクセス時にも安定して高速に動作するように変更をおこないました。 2026年4月: 画像スライド * 新たなスライドの種類として画像スライドを追加しました。 * PowerPoint, PDFファイルを一括インポートし、画像スライドとして追加する機能を追加しました * そのほか多数の細かな変更(操作性などのデザイン改善や、不具合)をおこないました 2026年3月: ワードクラウド、コメントのAIモデレーション(監視) * 新たなスライドの種類としてワードクラウドを追加しました * コメントをAIで自動監視する機能をリリースしました * そのほか細かな改善や不具合の修正をおこないました 2026年2月: 有料プランのデータエクスポート

By 阿部 隼也

チームメンバーを招待する方法

チームメンバーを追加するには、招待する必要があります。 その招待方法を紹介します。 招待可能なチームメンバーの数は、ご利用のプランによって異なるため、事前にご確認ください。 チームページの「新しいチームメンバーを招待」にて、招待するメンバーのメールアドレスを入力し、「招待を送信」をクリックします。 招待された側で招待を承認 次に、招待された側の方によって招待を承認する必要があります。 ※この承認にはLiveQのアカウントが必要となりますので、必ず事前にご登録ください。 下記のような招待メールが届きます。 件名:【LiveQ】チームへの招待が届いています 差出人:[email protected] 既にLiveQに登録済みの方はそのまま「招待を承認して参加する」ボタンをクリックします。 まだLiveQに登録していない方は、登録後、同様に承認ボタンをクリックします。 チームを切り替える 招待を承認すると、チームページに下記のように「チーム切り替え」ができるようになります。 招待したユーザーにもメールが届きます 招待が承認されると、招待したユーザーに

By 阿部 隼也

チーム情報の管理(名称、宛名)

LiveQでは、ユーザーはチームに所属します。登録時はご自身のチームに所属する仕組みとなっています。 最大チームメンバー数は、ご利用のプランによって異なります。 事前にご確認ください。 チーム情報の管理・変更 ホーム画面より「チーム」をクリックするとチームページに遷移します。 ここで「チーム情報」を変更できます。 たとえば「チーム名」「請求書の宛名」を入力し、「保存」をクリックします。

By 阿部 隼也