cURL
curl --request POST \ --url https://api.example.com/auth/login
Authenticate a user and receive JWT tokens.
Documentation IndexFetch the complete documentation index at: https://docs.tattoo.dev/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.tattoo.dev/llms.txt
Use this file to discover all available pages before exploring further.
{ "email": "developer@example.com", "password": "SecurePassword123!" }
{ "success": true, "message": "Login successful", "user": { "id": "uuid", "email": "developer@example.com", "name": "Developer Example", "role": "Client", "roles": [] }, "tokens": { "access_token": "jwt", "refresh_token": "jwt", "expires_in": 86400 } }
tokens
Was this page helpful?