Interface PushoverMessageResponse

Represents the response received after successfully sending a Pushover message.

interface PushoverMessageResponse {
    errors?: string[];
    receipt?: string;
    request: string;
    status: 0 | 1;
}

Hierarchy

  • PushoverResponse
    • PushoverMessageResponse

Properties

errors?: string[]

An array of error messages if the request failed (status is 0).

receipt?: string

A receipt ID, returned only for messages sent with emergency priority (priority: 2). This ID can be used to check the acknowledgement status or cancel retries.

request: string

A unique identifier for the API request, generated by Pushover.

status: 0 | 1

Indicates the status of the request. 1 for success, 0 for failure.