---
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
- `409` — Conflict

## Changes

- **2026-08-16** `c363cb2feb95` — 1 info
  - the security scope `notification:create` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-15** `c301132dbfd7` — 1 info
  - the security scope `notification:create` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-14** `a84d4905fdbb` — 1 info
  - the security scope `notification:create` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-13** `48408451a1f0` — 1 info
  - the security scope `notification:create` was removed from the endpoint's security scheme `bearerAuth`
- **2026-08-12** `ae20b30817de` — 2 info
  - the security scope `notification:create` was removed from the endpoint's security scheme `bearerAuth`
  - added the non-success response with the status `409`

[Full history](https://skmtc.dev/whop/apis/whop-api/changes/notifications/post.md)

---

[API](https://skmtc.dev/whop/apis/whop-api.md) · [All operations](https://skmtc.dev/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/whop/whop-api/revisions/c363cb2feb95/schema)
