action vercel_get_configuration { label: "Retrieve an integration configuration" description: "Allows to retrieve a the configuration with the provided id in case it exists. The authenticated user or team must be the owner of the config in order to access it." provider: vercel method: GET path: "/v1/integrations/configuration/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" description: "ID of the configuration to check" } teamId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" } }