Reissue Token
Reissue access token based on API key
Last updated: March 26, 2026
GET
/api/v1/auth/reissueDescription
Issue or reissue an access token using an existing valid API key. Use this endpoint when your current access token is expired or about to expire.
Authentication
Send the API Key through Bearer token authentication.
Response
1
2
3
{
"access_token": "string"
}Request Examples
1
2
3
4
5
6
7
8
const response = await fetch('http://{{EDGE_IP}}:8100/api/v1/auth/reissue', {
method: 'GET',
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
const data = await response.json();