Frontend API
Generate a JWT token for the current session. Used for API authentication.
cURL
curl --request GET \ --url https://{deploymentHost}/session/token \ --cookie __session=
{ "status": 200, "message": "", "data": { "token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c2VyXzQ1Njc4OTEyMyIsImlhdCI6MTYwOTQ1OTIwMCwiZXhwIjoxNjA5NDYyODAwfQ.signature_here", "expires_at": "2024-01-01T13:00:00Z" }, "session": { "signin_attempts": [], "signins": [ { "id": "signin_987654321", "user_id": "user_456789123", "created_at": "2024-01-01T12:00:00Z" } ], "signup_attempts": [], "active_signin": { "id": "signin_987654321", "user_id": "user_456789123", "created_at": "2024-01-01T12:00:00Z" } }, "errors": [] }
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
JWT token generated successfully
HTTP status code
Response message (empty for success)
Response data (can be any type)
Show child attributes
Array of error objects (empty for success)