action appcenter_org_invitations_list_pending { label: "orgInvitations_listPending" description: "Gets the pending invitations for the organization" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/invitations" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { type: "array" items: { required: ["id", "email", "role"] properties: { email: { type: "string" description: "The email address of the invited user" } id: { type: "string" format: "uuid" description: "The unique ID (UUID) of the invitation" } role: { type: "string" description: "The role assigned to the invited user" } } } } }