Rise Wallet
  • 🙌Introduction
    • Self-Custody
    • Best Practices
    • Bigger Picture
  • Features
    • ✨Active on Devnet
  • Integrations
    • ⛓️Integrate Rise Wallet
      • With the Wallet Adapter
      • Without the Wallet Adapter
        • Detecting the Provider
        • Establishing Connection
        • Sending Transactions
        • Signing Transactions
        • Signing Messages
    • 🎭Profile Picture Protocol
      • Get a Wallet's Profile Picture
      • Set a NFT as a Profile Picture
      • Clear Profile Picture
    • ⚡Rise Notifications
      • Sending Notifications
      • User Perspective
        • Notification Center
        • Subscription Management
      • API Endpoints
        • Broadcast Endpoint
        • Unicast Endpoint
        • List Casts Endpoint
        • View Cast Endpoint
        • Check Key Subscription Status
Powered by GitBook
On this page
  1. Integrations
  2. Rise Notifications
  3. API Endpoints

Unicast Endpoint

POST /v1/casts/unicast
Headers
{
  "Authorization": "Basic 5LQWBmQ1...FQD"
}
Body (JSON)
{
  "title": "New feature",
  "body": "We are releasing super cool feature at 1PM CET",
  "icon": "https://solflare.com/assets/logo-128.png",
  "image": null,
  "key": "0xe195...7ce8",
  "platform": "all", 
  "topic": "general",
  "actionUrl": null
}
Response
{
  "data": {
      "_id": "123...",
      "status": "pending",
      "title": "New feature",
      "body": "We are releasing super cool feature at 1PM CET",
      "icon": "https://solflare.com/assets/logo-128.png",
      "image": null,
      "key": "0xe195...7ce8",
      "platform": "all", 
      "topic": "general",
      "actionUrl": null,
      ...
    }
}
PreviousBroadcast EndpointNextList Casts Endpoint

Last updated 2 years ago

⚡