action id4i_invite_users { label: "Invite Users" provider: id4i method: POST path: "/api/v1/organizations/{organizationId}/users/invite" encoding: json input: { type: "object" properties: { invitations: { type: "array" items: { type: "object" required: ["roles"] properties: { email: { type: "string" } roles: { type: "array" items: { type: "string" } } userName: { type: "string" } } } } organizationId: { type: "string" } } required: ["invitations", "organizationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }