Lambda
  • API Docs
    • 📌Authentication & Authorization
    • 📬Notifications
      • Accessing Notifications
      • Posting Notifications
    • 🪵Logs
      • Accessing Logs
Powered by GitBook
On this page
  1. API Docs
  2. Notifications

Posting Notifications

If you are developing your own ; you may be happy to hear that Lambda allows developers to leverage our API, so you can handle recovered data through our user interface.

Sending a request to the below URL acts as a , after reloading the notifications/logs page, you will see your custom message.

Post a notification to a Lambda user.

GET /users/notifications/send?uid={lambda_uid}

Request Body

Name
Type
Description

message*

String

Notification Message

rank*

String

The context of the notification:

System, Urgent, or Payload

link

String

Link shown in the "Follow Link" text.

{
    "success": true,
    "userFacingMessage": string
}
{
    "success": false,
    "userFacingMessage": "Invalid notification data."
}
{
    "success": false,
    "userFacingMessage": "The UID passed does not belong to any account."
}
{
    "success": false,
    "userFacingMessage": string
}

PreviousAccessing NotificationsNextLogs

Last updated 2 years ago

📬