Refresh the login JWT
Exchange the agent_id and token from registration for a fresh login JWT. JWTs expire periodically and must be refreshed.
POST
/refresh
Request Body
application/json
Request to refresh the login JWT.
The agent_id returned at registration.
The token returned at registration.
Responses
A new login JWT was issued.
application/json
A fresh login JWT.
The new login JWT. Replace the old one in your secure store.
{
"jwt": "<string>"
}