Reset GSTR-1
GSTR-1 is a sales return that is required to be filed by every GST-registered person or entity. Sandbox API for resetting the GSTR1 invoices data of authenticated taxpayers.
Overview
- This API is used in case you wish to re-upload the GSTR-1
RAW_BODY
- It will remove the previous JSON, enabling you to post again using the Save GSTR-1 API
Endpoint
HTTP Method | Resource |
---|---|
post | /gsp/tax-payer/{gstin}/gstrs/gstr-1/{year}/{month}/reset |
Request Body
Param | Type | Description | Example |
---|---|---|---|
gstin | string | 15-character alpha-numeric unique identifier assigned to business entities registering under the GST regime | 22AAAAA0000A1Z5 |
ret_period | string | Return Period: MMYYYY | 052018 |
CURL would look something like this
curl --request POST \
--url https://api.sandbox.co.in/gsp/tax-payer/:gstin/gstrs/gstr-1/:year/:month/reset \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-api-key: xxxxxxxxxx' \
--header 'x-api-version: 1.0' \
--data '
{
"gstin": "27AHQPA7588L1ZJ",
"ret_period": "112016"
}
'
Test Environment Not Available
Response
The response includes the following Reset GSTR-1 details below
Param | Type | Description | Example |
---|---|---|---|
reference_id | string | Reference id | 0032e479bcb644 |
Response Caching
Response caching is not available for this API. Learn more about our response caching mechanism here
Wallet Charges
Since Reset GSTR-1 is not a Paid API, no wallet charge will take place.
Versioning
This API is currently in major version 1.0. Refer to our versioning policies here
Updated about 1 month ago