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
IMS
Save IMS DataPUT
Reset IMS DataPUT
Get IMS StatusGET
Get IMS dataGET
Get IMS Count dataGET
Get Supplier IMS Invoices dataGET
Get Added Back Liability RecordsGET
Get IMS dataGET
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APIIMSGet Supplier IMS Invoices data

Get Supplier IMS Invoices data

GEThttps://apisandbox.whitebooks.in/ims/supplierInvoices

Get the section wise supplier invoices in IMS based on rtn typ and section.

Parameters

query parameters
gstinstringrequired
GSTIN of the taxpayer
emailstringrequired
Email
retperiodstringrequired
Return Period format MMYYYY
sectionstringrequired
Section Type
rtnTypstringrequired
GSTR1/GSTR1A
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/ims/supplierInvoices
1const response = await fetch('https://apisandbox.whitebooks.in/ims/supplierInvoices?gstin=value&email=value&retperiod=value&section=value&rtnTyp=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.