action mastodon_get_api_v1_push_subscription { label: "get_api_v1_push_subscription" description: "View the PushSubscription currently associated with this access token." provider: mastodon method: GET path: "/api/v1/push/subscription" encoding: json output: { description: "Represents a subscription to the push streaming server." required: ["alerts", "endpoint", "id", "server_key"] properties: { alerts: { type: "object" description: "Which alerts should be delivered to the `endpoint`." } endpoint: { type: "string" description: "Where push alerts will be sent to." } id: { type: "string" description: "The ID of the push subscription in the database. Cast from an integer, but not guaranteed to be a number." } server_key: { type: "string" description: "The streaming server's VAPID key." } } } }