GST APIEnvironment:
Default OTP575757
API Reference
Overview
Public
Search TaxpayerGET
View and Track ReturnsGET
Get PreferenceGET
Unregistered Applicants APIGET
Unregistered Applicants ValidationGET
Authentication
GSTR
GSTR1
GSTR1A
GSTR2A
GSTR2B
GSTR2X
GSTR3B
GSTR4
GSTR4A
GSTR4Annual
GSTR5
GSTR6
GSTR6A
GSTR7
GSTR8
GSTR9
GSTR9A
GSTR9C
SPIKE
ALL
IMS
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APIPublicUnregistered Applicants API

Unregistered Applicants API

GEThttps://apisandbox.whitebooks.in/public/unregistered-applicants

This API is called to fetch details of the URD for e-commerce supplier

Parameters

query parameters
uidstringrequired
UID of the Unregistered Applicants
emailstringrequired
Email
header parameters
ip_addressstringrequired
IP Address
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/public/unregistered-applicants
1const response = await fetch('https://apisandbox.whitebooks.in/public/unregistered-applicants?uid=value&email=value', {
2 method: 'GET',
3 headers: {
4 ip_address: "value",
5 client_id: "value",
6 client_secret: "value"
7},
8});
9
10const data = await response.json();
11console.log(data);
No example available.