Invitations – AuthKit – WorkOS Docs
AuthKit
AuthKit allows for streamlined authentication across multiple platforms and provides you with the tools necessary to integrate authentication features into your applications.
Features
- Single Sign-On (SSO): Simplify user access with unified login credentials.
- OAuth Support: Easily integrate third-party OAuth providers.
- User Invitation Management: Send invitations to users directly from your application.
Getting Started
To start using AuthKit, follow these simple steps:
- Create an Account: Sign up on our platform.
- Set Up Your Application: Configure your app on the dashboard.
- Integrate API: Use our API to call authentication functions.
Example Usage
Sending Invitations
const workos = require('@workos-inc/node');
async function sendInvitation() {
const response = await workos.auth.sendInvitation({
email: 'user@example.com',
client_id: 'your_client_id',
});
console.log(response);
}
API Reference
For detailed API endpoints, please see the API Reference.
Feedback
We would love to hear your thoughts! Please share your feedback with us.