GST APIEnvironment:
Default OTP575757
API Reference
Overview
Public
Authentication
GSTR
GSTR1
GSTR1A
GSTR2A
GSTR2B
GSTR2X
GSTR3B
GSTR4
GSTR4A
GSTR4Annual
GSTR5
GSTR6
GSTR6A
GSTR7
GSTR8
GSTR9
GSTR9A
GSTR9C
SPIKE
ALL
Save User MastersPOST
Get User MastersGET
Get File DetailsGET
Get Large File DetailsGET
Late FeeGET
Get additional late fee breakupGET
Document DownloadGET
Proceed To FileGET
New Proceed To File(GSTR1,GSTR5,GSTR6)GET
Document UploadPOST
Get Return StatusGET
Save PreferencePUT
Get PreferenceGET
IMS
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APIALLNew Proceed To File(GSTR1,GSTR5,GSTR6)

New Proceed To File(GSTR1,GSTR5,GSTR6)

GEThttps://apisandbox.whitebooks.in/all/newproceedfile

This API is called for new proceed to file

Parameters

query parameters
gstinstringrequired
GSTIN of the taxpayer
retperiodstringrequired
Return Period
typestringrequired
Return Type Sample Value(GSTR1)
isNilstringoptional
Nil Filing flag
emailstringrequired
Email
header parameters
gst_usernamestringrequired
GST UserName
state_cdstringrequired
State Code
ip_addressstringrequired
IP Address
txnstringrequired
Transaction
client_idstringrequired
Client ID
client_secretstringrequired
Client Secret

Response

Not Found. If requested entity is not found or if requested API is not found.
GET/all/newproceedfile
1const response = await fetch('https://apisandbox.whitebooks.in/all/newproceedfile?gstin=value&retperiod=value&type=value&isNil=value&email=value', {
2 method: 'GET',
3 headers: {
4 gst_username: "value",
5 state_cd: "value",
6 ip_address: "value",
7 txn: "value",
8 client_id: "value",
9 client_secret: "value"
10},
11});
12
13const data = await response.json();
14console.log(data);
No example available.