action mastodon_post_api_v1_apps { label: "post_api_v1_apps" description: "Create a new application to obtain OAuth2 credentials." provider: mastodon method: POST path: "/api/v1/apps" encoding: json output: { type: "object" properties: { client_id: { type: "string" } client_secret: { type: "string" } id: { type: "string" } name: { type: "string" } redirect_uri: { type: "string" } vapid_key: { type: "string" } website: { type: "string" } } } }