action mastodon_get_api_v1_apps_verify_credentials { label: "get_api_v1_apps_verify_credentials" description: "Confirm that the app's OAuth2 credentials work." provider: mastodon method: GET path: "/api/v1/apps/verify_credentials" encoding: json output: { description: "Represents an application that interfaces with the REST API to access accounts or post statuses." required: ["name"] properties: { client_id: { type: "string" description: "Client ID key, to be used for obtaining OAuth tokens" } client_secret: { type: "string" description: "Client secret key, to be used for obtaining OAuth tokens" } name: { type: "string" description: "The name of your application." } vapid_key: { type: "string" description: "Used for Push Streaming API. Returned with [POST /api/v1/apps](https://docs.joinmastodon.org/methods/apps/#create-an-application). Equivalent to [PushSubscription#server_key](https://docs.joinmastodon.org/entities/pushsubscription/#server_key)" } website: { type: "string" description: "The website associated with your application. Must be URL." } } } }