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
Save SPIKE dataPUT
Get DRC01C/DRC01B DataGET
get mismatch in GSTR1 and GSTR3BGET
File SPIKE dataPOST
ALL
IMS
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APISPIKESave SPIKE data

Save SPIKE data

PUThttps://apisandbox.whitebooks.in/spike/spikesave

Used to save entire SPIKE Data.

Parameters

query parameters
emailstringrequired
User Email
header parameters
gstinstringrequired
GST Number
ret_periodstringrequired
Return Period (MMYYYY)
gst_usernamestringrequired
GST UserName
state_cdstringrequired
State Code
ip_addressstringrequired
IP Address
txnstringrequired
Transaction
client_idstringrequired
Client ID
client_secretstringrequired
Client Secret

Request Body

application/jsonrequired
frmtypstringoptional
Form Type
Example: "DRC01B"
refidstringoptional
Reference Id for DRC01B
Example: "AA070922000131X"
rtnprdstringoptional
Return Period
Example: "092022"
gstinstringoptional
GSTIN
Example: "07CMNPV1083B1ZX"
drc03arnarray<string>optional
items: stringItems
reasonsarray<object>optional
Reasons
Array items:
rsnstringoptional
Reason
Example: "lbtohkhl"
rsncdstringoptional
Reason Code
deldrc03arnarray<string>optional
items: stringItems

Response

Not Found. If requested entity is not found or if requested API is not found.
PUT/spike/spikesave
1const response = await fetch('https://apisandbox.whitebooks.in/spike/spikesave?email=value', {
2 method: 'PUT',
3 headers: {
4 gstin: "value",
5 ret_period: "value",
6 gst_username: "value",
7 state_cd: "value",
8 ip_address: "value",
9 txn: "value",
10 client_id: "value",
11 client_secret: "value",
12 Content-Type: "application/json"
13},
14 body: JSON.stringify({
15 "frmtyp": "DRC01B",
16 "refid": "AA070922000131X",
17 "rtnprd": "092022",
18 "gstin": "07CMNPV1083B1ZX",
19 "drc03arn": [
20 "AD070423000014X"
21 ],
22 "reasons": [
23 {
24 "rsn": "lbtohkhl",
25 "rsncd": "string"
26 }
27 ],
28 "deldrc03arn": [
29 "AD070423000014X"
30 ]
31}),
32});
33
34const data = await response.json();
35console.log(data);
No example available.