Skip to content

Get Invoice Count#

Route

/basic/gstn/{flynn-version}/taxpayerapi/{gstn-api-version}/returns/ims/GETCNT?gstin={gstin}&goods_typ={goodsType}

  • active ‘flynn-version’: v1.0
  • method: GET

URL Parameters#

Name Description Type
flynn-version version of the API
for example, v1.0
string
gstn-api-version as per the version of the GST API Documentation
for example, v0.3
string

Query Parameters#

Name Description Type Mandatory
gstin GSTIN of the taxpayer
for example, 33GSPTN0791G1Z5
string Yes
goods_typ Type of goods
for example, ALL_OTH
string Yes

Headers#

All required headers to make an authenticated API call.

Response#

200#

Successful response will be the same payload as per the ‘GST API Documentation’.

Example

{
  "status": "1",
  "data": {
    "all_oth": {
      "b2bcn": {
        "noaction": 12,
        "reject": 1,
        "pending": 0,
        "accept": 1
      },
      "b2bdn": {
        "noaction": 6,
        "reject": 1,
        "pending": 0,
        "accept": 0
      },
      "b2ba": {
        "noaction": 0,
        "reject": 0,
        "pending": 0,
        "accept": 0
      },
      "b2b": {
        "noaction": 13,
        "reject": 0,
        "pending": 1,
        "accept": 1
      },
      "ecom": {
        "noaction": 11,
        "reject": 0,
        "pending": 0,
        "accept": 0
      },
      "ttl_cnt": 52,
      "ecoma": {
        "noaction": 3,
        "reject": 0,
        "pending": 0,
        "accept": 0
      },
      "b2bdna": {
        "noaction": 2,
        "reject": 0,
        "pending": 0,
        "accept": 0
      },
      "b2bcna": {
        "noaction": 0,
        "reject": 0,
        "pending": 0,
        "accept": 0
      }
    },
    "inv_supp_isd": {
      "ttl_cnt": 101,
      "isd": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      },
      "isda": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      },
      "isdcn": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      },
      "isdcna": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      }
    },
    "imp_gds": {
      "ttl_cnt": 60,
      "impg": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      },
      "impga": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      },
      "impgsez": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      },
      "impgseza": {
        "noaction": 20,
        "accept": 10,
        "reject": 2,
        "pending": 1
      }
    }
  },
  "error": null,
  "info": null,
  "additionalInfo": null,
  "alert": null
}
Errors#

Invalid GSTIN Format

{
  "status": "0",
  "data": null,
  "error": {
    "message": "err-invalid-gstin-format",
    "type": "ClientRequest",
    "args": {
      "parameter-name": "gstin"
    }
  },
  "info": null,
  "additionalInfo": null,
  "alert": null
} 

Invalid GSTN API Version

{
  "status": "0",
  "data": null,
  "error": {
    "message": "err-invalid-gst-returns-api-version",
    "type": "ClientRequest",
    "args": {
      "version": "v8.0"
    }
  },
  "info": null,
  "additionalInfo": null,
  "alert": null
}   

GSTN Error

{
  "status": "0",
  "data": null,
  "error": {
    "message": "err-gstn-returned-error",
    "type": "Gstn",
    "args": {
      "gstn-err": {
        "status-code": "0",
        "error-code": "RET11402",
        "message": "Unauthorized User"
      }
    }
  },
  "info": null,
  "additionalInfo": null,
  "alert": null
}
Response Status Description
400 Invalid GSTIN format in the request
400 Invalid GSTN API Version
404 Invalid GSTIN
502 Error at GSTN end

Common Errors

check here for other common errors.