Archived Version: v2026.02

You are viewing an archived reference version.

Reissue Token

Reissue access token based on API key

Last updated: January 1, 1980

GET
/api/v1/auth/reissue

Description

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();