Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Sign in with email and password
cURL
curl --request POST \ --url https://example.com/api/auth/sign-in/email \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "<string>", "password": "<string>" } '
{ "redirect": false, "token": "<string>", "user": { "createdAt": "Generated at runtime", "email": "<string>", "name": "<string>", "updatedAt": "Generated at runtime", "banExpires": "2023-11-07T05:31:56Z", "banReason": "<string>", "banned": false, "emailVerified": false, "id": "<string>", "image": "<string>", "role": "<string>" }, "url": "<string>" }
Bearer token authentication
Email of the user
Password of the user
Callback URL to use as a redirect for email verification
If this is false, the session will not be remembered. Default is true.
true
Success - Returns either session details or redirect URL
Session response when idToken is provided
false
Session token
Show child attributes