Skip to main content
POST
/
v1
/
ui
/
notifications
/
bulk
cURL
curl --request POST \
  --url https://api.example.com/v1/ui/notifications/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "userIds": [
    "<string>"
  ],
  "notification": {
    "title": "<string>",
    "message": "<string>",
    "type": "info",
    "priority": "low",
    "metadata": {},
    "actionUrl": "<string>",
    "actionText": "<string>",
    "expiresAt": "<unknown>",
    "environment": "sandbox"
  }
}
'

Body

application/json
userIds
string[]
required
Minimum array length: 1
Minimum string length: 1
notification
object
required

Response

201 - undefined