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
File GSTR9POST
File GSTR9 dataPOST
Save GSTR9PUT
Get GSTR9 DetailsGET
Get GSTR9 Auto Calculated DetailsGET
Create 8A Data APIPUT
Get GSTR9 8A DetailsGET
Get R1R1A HSN DetailsGET
GSTR9A
GSTR9C
SPIKE
ALL
IMS
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APIGSTR9Create 8A Data API

Create 8A Data API

PUThttps://apisandbox.whitebooks.in/gstr9/create8adetails

Used generate the updated 8A data for Gstr9.

Parameters

query parameters
emailstringrequired
API Developer 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
gstinstringoptional
GSTIN number
Example: "27AHQPA7588L1ZJ"
fystringoptional
Financial Period
Example: "2024-25"

Response

Not Found. If requested entity is not found or if requested API is not found.
PUT/gstr9/create8adetails
1const response = await fetch('https://apisandbox.whitebooks.in/gstr9/create8adetails?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 "gstin": "27AHQPA7588L1ZJ",
16 "fy": "2024-25"
17}),
18});
19
20const data = await response.json();
21console.log(data);
No example available.