@baseUrl = https://localhost:7001 @email = developer@example.com @password = replace-with-password @token = replace-with-token-from-login-response ### Log in and receive a JWT POST {{baseUrl}}/auth/login Accept: application/json Content-Type: application/json { "email": "{{email}}", "password": "{{password}}" } ### Call a protected endpoint after manually copying the JWT above GET {{baseUrl}}/me Accept: application/json Authorization: Bearer {{token}}