---
title: "Send Notification"
method: POST
path: "/notifications"
tags: ["Notifications"]
---

# Send Notification

`POST /notifications`

Queues a notification to every user of an experience or to an account's team, processed asynchronously. Every send is attributed to an app: use an app API key, or a credential acting on behalf of an app. Narrow the audience with `user_ids` to send a mention.

## Headers

- `Idempotency-Key` string

## Request body

- object
  - `account_id` string — Account whose team members receive the notification (`biz_` tag). Exactly one of `experience_id` or `account_id` is required.
  - `content` string, required — Main body text of the notification.
  - `experience_id` string — Experience whose users receive the notification (`exp_` tag). Exactly one of `experience_id` or `account_id` is required.
  - `icon_user_id` string, nullable — User whose profile picture is used as the notification icon. Defaults to the experience or account avatar.
  - `rest_path` string, nullable — Path segment appended to the generated deep link that opens your app, for example `/settings/billing`.
  - `subtitle` string, nullable — Optional secondary line displayed below the title.
  - `title` string, required — Headline text of the notification.
  - `user_ids` string[] — Optional `user_` tags narrowing the audience. When provided, only these users are notified (as a mention), provided they are in the targeted experience or account.

## Response `202`

notification queued

- object
  - `success` boolean, required

## Other responses

- `400` — Invalid Parameters
- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/whop/apis/whop-api.md) · [All operations](https://skmtc.net/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whop/whop-api/versions/db0883548bc5/schema)
