action vercel_get_team_access_request { label: "Get access request status" description: "Check the status of a join request. It'll respond with a 404 if the request has been declined. If no `userId` path segment was provided, this endpoint will instead return the status of the authenticated user." provider: vercel method: GET path: "/v1/teams/{teamId}/request/{userId}" encoding: json input: { type: "object" properties: { teamId: { type: "string" } userId: { type: "string" } } required: ["teamId", "userId"] additionalProperties: false } output: { type: "object" required: ["accessRequestedAt", "bitbucket", "confirmed", "github", "gitlab", "joinedFrom", "teamName", "teamSlug"] properties: { accessRequestedAt: { type: "number" description: "Timestamp in milliseconds when the user requested access to the team." } bitbucket: { type: ["object", "null"] description: "Map of the connected Bitbucket account." properties: { login: { type: "string" } } } confirmed: { type: "boolean" description: "Current status of the membership. Will be `true` if confirmed, if pending it'll be `false`." } github: { type: ["object", "null"] description: "Map of the connected GitHub account." properties: { login: { type: "string" } } } gitlab: { type: ["object", "null"] description: "Map of the connected GitLab account." properties: { login: { type: "string" } } } joinedFrom: { type: "object" description: "A map that describes the origin from where the user joined." required: ["origin"] properties: { commitId: { type: "string" } dsyncConnectedAt: { type: "number" } dsyncUserId: { type: "string" } gitUserId: { type: "object" } gitUserLogin: { type: "string" } idpUserId: { type: "string" } origin: { type: "string" enum: ["import", "mail", "link", "teams", "github", "gitlab", "bitbucket", "saml", "dsync", "feedback"] } repoId: { type: "string" } repoPath: { type: "string" } ssoConnectedAt: { type: "number" } ssoUserId: { type: "string" } } } teamName: { type: "string" description: "The name of the team." } teamSlug: { type: "string" description: "The slug of the team." } } } }