# Notification API ## Send Notification Send a notification to a user. ``` Usage: rbxcloud notification send [OPTIONS] --universe-id --user-id --payload --api-key Options: -u, --universe-id Universe ID -U, --user-id User ID -P, --payload Payload -p, --pretty Pretty-print the JSON response -a, --api-key Roblox Open Cloud API Key [env: RBXCLOUD_API_KEY=] -h, --help Print help ``` ### Example For an example payload, see the [Roblox documentation](https://create.roblox.com/docs/cloud/reference/UserNotification#Create-User-Notification). ``` $ rbxcloud notification send -p -u 12345 -U 6789 -P PAYLOAD_JSON -a MY_KEY ```