Skip to content

Refresh Session#

Given an authenticated session ID, Refresh the existing GSTN session

Route

/basic/gstn/{flynn-version}/taxpayerapi/{gstn-api-version}/authenticate

  • active ‘flynn-version’: v3.0
  • method: POST

URL Parameters#

Name Description Type
flynn-version version of the API
for example, v3.0
string
gstn-api-version GSTN API version
for example, v0.2
string

Headers#

All headers are mentioned in common GSTN headers

Apart from the common GSTN headers for Version-3 need to pass action in header

header value
action REFRESHTOKEN

Request#

Body consists of the following payload and has authenticated session ID

Sample Request Body

{
 "gst-session-id": "5ec6bafa-6ad2-4641-82ec-80511b45e30b"
}

Response#

200:#

Http Status 200 signifies that GSTN session has been refreshed.

Sample response body

{
  "status": "1",
  "data": {
    "gst-session-id": "8d7a5abc-e7ba-4ab8-8f0a-ef80456e9194"
  },
  "error": null,
  "info": null,
  "additionalInfo": null,
  "alert": null
}