1. Request Details

HTTP Method POST
URL PATH https://my.gstzen.in/api/gstn-check-established-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": "17AAFCC9980MZZT"
    }

3. Response Example

If GSTIN's GSTN session is active

    {
        "status": 1,
        "message": "Your GSTN portal session is active."
    }

If GSTIN's GSTN session is inactive

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

If provided GSTIN is incorrect

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