Workflow Overview
The GSTR-1 filing process follows this sequence:- Authenticate - Create a taxpayer session (valid for 6 hours)
- Save Data - Upload your GSTR-1 data to the GST portal for validation
- Initialize Filing - Process and validate the saved data
- Get Summary - Retrieve section summaries and checksum required for filing
- Generate EVC OTP - Get Electronic Verification Code OTP
- File Return - Submit the return with OTP verification
1
Authenticate and Get Taxpayer Session
Before filing GSTR-1, you must authenticate and create a taxpayer session. Follow the steps in the Generate Taxpayer Session recipe to obtain a Taxpayer access token.This access token is required for all GST Taxpayer API calls and is valid for 6 hours.
2
Save GSTR-1 Data
Once you have the Taxpayer access token, save your GSTR-1 data using the Save GSTR-1 endpoint.Provide all outward supply details including B2B invoices, B2CL invoices, exports, credit/debit notes, HSN summary, and other required sections. The data will be saved on the GST portal for review before filing.
The response will include a
cURL Request
cURL Request
reference_id which you can use to check the status of the save operation. You can optionally poll the GST Return Status endpoint using this reference ID.3
Proceed to File
After saving your GSTR-1 data, proceed to file using the New Proceed endpoint with
The response will include a
is_nil=N to indicate this is not a nil return.cURL Request
cURL Request
reference_id that you can use to track the filing initialization status. You can periodically check the status using the GST Return Status endpoint until it’s ready for filing.4
Get GSTR-1 Summary
After initializing the filing, retrieve the GSTR-1 summary using the GSTR-1 Summary endpoint (GET method) to verify the data and obtain the section summaries (
The response will contain the complete GSTR-1 data with section summaries and checksum. Extract the
sec_sum) and checksum (chksum) required for filing.The summary includes table-wise data validation results and the checksum that will be used in the filing request. You can optionally use the summary_type=long query parameter to get a detailed summary.cURL Request
cURL Request
sec_sum array and chksum value from the response as they are required for the filing request in the next step.5
Generate EVC OTP
To file GSTR-1, you need to generate an EVC (Electronic Verification Code) OTP using the Generate EVC OTP endpoint.Provide the PAN (Permanent Account Number) associated with the taxpayer’s GST registration. The OTP will be sent to the registered mobile number or email.
The OTP will be sent to the registered contact details. You’ll need this OTP in the next step to complete the filing.
cURL Request
cURL Request
6
File GSTR-1
Once you have the EVC OTP, file your GSTR-1 using the File GSTR-1 endpoint.Include the PAN and OTP as query parameters, along with the return period and section summaries in the request body. The section summaries include checksums for data validation.
Upon successful filing, the response will confirm that GSTR-1 has been filed for the specified return period.
cURL Request
cURL Request