---
title: "Generate Token"
slug: "generate-token"
updated: 2026-02-23T06:16:18Z
published: 2026-02-23T06:16:18Z
canonical: "help.symphonysummitai.com/generate-token"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.symphonysummitai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Generate Token

### The Generate Token API enables you to generate authentication tokens used to provide secure path to access restricted applications. This API does not have payload, you must enter the following required details to generate the API token.

To generate JWT token API, perform the following steps:

1. Open the Postman application (you can use any application to get API response).
2. Select HTTP Method as **GET**.
3. Click **Headers** and specify the APIKey that you generated for the specific User from the application using **User > Access tab > Login Type as API Key**.
4. Specify the API Key expiry date and copy the default API Key displayed there.
5. Go back to Postman application (or any other API App) and after selecting the method as GET, specify the GenerateToken API as given in following example and click **Headers**. Example in the URL replace <<domain-name>> based on your domain-name: https://<novatech.com>/api_report/GenerateToken
6. Click Headers and select the API Key checkbox and specify the Value of API Key.
7. Click **Send** to fetch the Token details. The Body of the response will give you the **Token** which you can use as a 'Bearer Token' in **Authorization** tab for connecting and executing other API Queries.

Save Token for Future Reference

Save the Token generated in a secure location for further usage of when you use the API Queries. Token generated will be passed as Bearer Token in **Authorization > Bearer Token** for authentication purpose when you execute an API.

![](https://cdn.document360.io/62351b42-cfbd-43ad-8ce1-82b8f455337f/Images/Documentation/image-1771498583895.png)Figure: Token generated using API Key

**Request:** (Headers include API key provided separately)

**Response:**

**Token**

**Use only the token value, without quotes or commas.**

```plaintext
{
  "token": "eyJhbGci…",
  "expiresIn": "3600"
}
```
