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.
cURL
curl --request POST \ --url http://localhost:3000/v1/auth/login \ --header 'Content-Type: application/json' \ --data ' { "email": "user@example.com", "password": "secretpassword123" } '
{ "token": "f47ac10b-58cc-4372-a567-0e02b2c3d479", "expires_at": "2023-11-07T05:31:56Z", "user": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "email": "jsmith@example.com", "is_verified": true, "is_admin": true, "created_at": "2023-11-07T05:31:56Z" } }
Authenticates a user and creates a new access token.
"user@example.com"
"secretpassword123"
Login successful
The access token to be used in standard Bearer authentication.
"f47ac10b-58cc-4372-a567-0e02b2c3d479"
The timestamp when this access token expires.
Show child attributes