action dev_post_admin_users_create { label: "Invite a User" description: "This endpoint allows the client to trigger an invitation to the provided email address.\n\n It requires a token from a user with `super_admin` privileges." provider: dev method: POST path: "/api/admin/users" encoding: json input: { type: "object" description: "User invite parameters" properties: { email: { type: "string" } name: { type: "string" } } } output: { type: "object" additionalProperties: true } }