GSTR-1 B2CS


About
- Get all B2C HSN invoices for a return period for the authenticated taxpayer (
gstin
) for the particularyear
andmonth
. - You also need to provide the
state_code
.
Endpoint
HTTP Method | Resource | Description |
---|---|---|
| /gsp/tax-payer/{gstin}/gstrs/gstr-1/b2cs/{year}/{month} | Takes in |
Path Parameters
Param | Type | Description | Example |
---|---|---|---|
gstin |
| 15-character alpha-numeric unique identifier assigned to business entities registering under the GST regime | AAAAA0000A |
year |
| Year for which Advance Tax needs to be fetched. | 2020 |
month |
| Month for which Advance Tax needs to be fetched. | 01 |
Once the values are added, Your curl will look something like this
curl --request GET \
--url https://api.sandbox.co.in/gsp/tax-payer/AAAAA0000A/gstrs/gstr-1/b2cs/2020/01 \
--header 'Accept: application/json' \
--header 'Authorization: xxxxxxxxx' \
--header 'x-api-key: xxxxxxxxx' \
--header 'x-api-version: 1.0'
Response
Param | Type | Description | Example |
---|---|---|---|
pos |
| Place of Supply | 06 |
chksum |
| Invoice Check sum value | ASDFGJKLPTBBJKBJKBBJKBB |
sply_ly |
| Supply Type | INTER |
rt |
| Rate as per invoice | 5 |
typ |
| Type | E |
etin |
| Ecom Operator Gstin | 20ABCDE7588L1ZJ |
txval |
| Taxable value of Goods or Service as per invoice | 110 |
iamt |
| IGST Amount as per invoice | 10 |
camt |
| CGST Amount as per invoice | 1000.00 |
samt |
| SGST Amount as per invoice | 1000.00 |
csamt |
| Cess Amount as per invoice | 10 |
flag |
| Invoice Status | N |
diff_percent |
| Differential percentage | .65 (65%) |
Updated 5 days ago