action svix_get_dashboard_access_api_v1_auth_dashboard_access_app_id_post { label: "Get Dashboard Access" description: "DEPRECATED: Please use `app-portal-access` instead.\n\nUse this function to get magic links (and authentication codes) for connecting your users to the Consumer Application Portal." provider: svix method: POST path: "/api/v1/auth/dashboard-access/{app_id}/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } "idempotency-key": { type: "string" description: "The request's idempotency key" } } required: ["app_id"] additionalProperties: false } output: { type: "object" required: ["token", "url"] properties: { token: { type: "string" } url: { type: "string" format: "uri" } } } }