pushover-notification - v1.0.3
    Preparing search index...

    Interface MessagePayload

    MessagePayload

    Complete Pushover API message payload

    Pushover Nachrichtenpayload

    API Request Struktur

    const payload: MessagePayload = {
    message: 'Security alert triggered',
    title: 'Intrusion Detection',
    priority: 2,
    url: 'https://dashboard.example.com/alerts',
    url_title: 'View in Dashboard',
    sound: 'alien'
    };
    interface MessagePayload {
        message: string;
        device?: string;
        file?: string | ImageFile;
        priority?: number;
        sound?: string;
        timestamp?: number;
        title?: string;
        token?: string;
        url?: string;
        url_title?: string;
        user?: string;
    }
    Index

    Properties

    message: string

    Message content (required)

    device?: string

    Target device name

    file?: string | ImageFile

    Image attachment

    priority?: number

    Message priority (-2 to 2)

    sound?: string

    Notification sound

    timestamp?: number

    UNIX timestamp override

    title?: string

    Message title

    token?: string

    Application token (optional if set in options)

    url?: string

    Supplementary URL

    url_title?: string

    URL link text

    user?: string

    User key (optional if set in options)