e-Invoice APIEnvironment:
API Reference
Overview
Authentication
Get GSTN Details
Get Sync GSTIN From CP
Generate IRN
Get EInvoice Details
Get IRN details by Doc Details
Cancel IRN
Get Rejected IRNs
Generate Ewaybill
Get Ewaybill Details by IRN
Get B2C QR Code Details
Get B2C QR Code DetailsGET
e-Invoice APIGet B2C QR Code DetailsGet B2C QR Code Details

Get B2C QR Code Details

GEThttps://apisandbox.whitebooks.in/einvoice/qrcode

Get B2C QR Code Details

Parameters

query parameters
emailstringrequired
User Email
header parameters
ip_addressstringrequired
IP Address
client_idstringrequired
Client ID
client_secretstringrequired
Client Secret
usernamestringrequired
User name
sgstinstringrequired
Seller GSTIN Number
docnostringrequired
Invoice Number
docdatestringrequired
Invoice Date (dd-MM-yyyy)
totinvvalstringrequired
Total Invoice Value
upiidstringoptional
UPI Id
bankaccnostringrequired
Seller Account Number
bankifsccodestringrequired
Bank IFSC Code
accountholdernamestringrequired
Account Holder Name
igstamountstringrequired
IGST Amount
cgstamountstringrequired
CGST Amount
sgstamountstringrequired
SGST Amount
cessamountstringrequired
CESS Amount

Response

Successful, Get B2C Qr Code Details.
GET/einvoice/qrcode
1const response = await fetch('https://apisandbox.whitebooks.in/einvoice/qrcode?email=value', {
2 method: 'GET',
3 headers: {
4 ip_address: "value",
5 client_id: "value",
6 client_secret: "value",
7 username: "value",
8 sgstin: "value",
9 docno: "value",
10 docdate: "value",
11 totinvval: "value",
12 upiid: "value",
13 bankaccno: "value",
14 bankifsccode: "value",
15 accountholdername: "value",
16 igstamount: "value",
17 cgstamount: "value",
18 sgstamount: "value",
19 cessamount: "value"
20},
21});
22
23const data = await response.json();
24console.log(data);
No example available.