Interface PushoverTagCancellationResponse

Represents the response received when cancelling emergency message retries by tag.

interface PushoverTagCancellationResponse {
    canceled: number;
    errors?: string[];
    request: string;
    status: 0 | 1;
}

Hierarchy

  • PushoverResponse
    • PushoverTagCancellationResponse

Properties

canceled: number

The number of emergency message retries that were successfully cancelled for the given tag.

errors?: string[]

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

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.