1. Request Details

HTTP Method POST
URL PATH https://my.gstzen.in/api/gstn-check-session/
Request Payload Type application/json
Response Type application/json
Authentication Bearer (Paste the access token you recieved from REST Api Authentication)

2. Request Payload Example

Request Payload

{
  "gstin": "GSTIN in your account"
}

3. Response Example

If GSTIN's GSTN session is active

{
  "status": 1,
  "api_call": "CHECK SESSION",
  "message": "Your GSTN portal session is active"
}

If GSTIN's GSTN session is inactive

{
  "status": 1,
  "api_call": "CHECK SESSION",
  "message": "Your GSTN portal session is inactive."
}

If provided GSTIN is incorrect

{
  "status": 0,
  "api_call": "CHECK SESSION",
  "message": "The GSTIN was not found in your account."
}