action vercel_git_namespaces { label: "List git namespaces by provider" description: "Lists git namespaces for a supported provider. Supported providers are `github`, `gitlab` and `bitbucket`. If the provider is not provided, it will try to obtain it from the user that authenticated the request." provider: vercel method: GET path: "/v1/integrations/git-namespaces" encoding: json input: { type: "object" properties: { provider: { enum: ["github", "gitlab", "bitbucket"] type: "object" } teamId: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["provider", "slug", "id", "ownerType"] properties: { id: { type: "object" } name: { type: "string" } ownerType: { type: "string" } provider: { type: "string" } slug: { type: "string" } } } } }