action vercel_get_configurations { label: "Get configurations for the authenticated user or team" description: "Allows to retrieve all configurations for an authenticated integration. When the `project` view is used, configurations generated for the authorization flow will be filtered out of the results." provider: vercel method: GET path: "/v1/integrations/configurations" encoding: json input: { type: "object" properties: { teamId: { type: "string" } view: { type: "string" enum: ["account", "project"] } } required: ["view"] additionalProperties: false } output: { type: "object" } }