GST APIEnvironment:
Default OTP575757
API Reference
Overview
Public
Authentication
GSTR
GSTR1
GSTR1A
GSTR2A
GSTR2B
GSTR2X
GSTR3B
GSTR4
GSTR4A
GSTR4Annual
GSTR5
GSTR6
Get B2B InvoicesGET
GSTR6 Calculate R6POST
Save GSTR6 Cross ITC detailsPOST
Offset Liability GSTR6 Late feePUT
Save GSTR6 dataPUT
Get CDNR InvoicesGET
Get ISD DetailsGET
Get GSTR6 SummaryGET
Submit GSTR6 dataPOST
File GSTR6 dataPOST
File GSTR6 dataPOST
Get Late FeeGET
Get ITC DetailsGET
Get B2BA InvoicesGET
Get CDNRA InvoicesGET
Get Amendment ISD DetailsGET
GSTR6A
GSTR7
GSTR8
GSTR9
GSTR9A
GSTR9C
SPIKE
ALL
IMS
ITC03
ITC04
CMP
Payment
Ledger
e-Invoice
Notices
GST APIGSTR6Save GSTR6 Cross ITC details

Save GSTR6 Cross ITC details

POSThttps://apisandbox.whitebooks.in/gstr6/savecrossitcdetails

Used to save the cross ITC details.

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
gstinstringrequired
GSTIN number
Example: "09AISDA1572E3ZY"
fpstringrequired
Financial period
Example: "072017"
isdItcCrossobjectrequired
iamtinumberoptional
Integrated to Integrated tax Value
Example: 700
iamtsnumberoptional
Integrated to state tax value
Example: 0
iamtcnumberoptional
Integrated to Central tax value
Example: 0
samtsnumberoptional
State to state tax value
Example: 0
samtinumberoptional
State to Integrated tax value
Example: 0
camtinumberoptional
Central to Integrated tax value
Example: 700
camtcnumberoptional
Central to State tax value
Example: 0
cessnumberoptional
Cess Value
Example: 200

Response

Not Found. If requested entity is not found or if requested API is not found.
POST/gstr6/savecrossitcdetails
1const response = await fetch('https://apisandbox.whitebooks.in/gstr6/savecrossitcdetails?email=value', {
2 method: 'POST',
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": "09AISDA1572E3ZY",
16 "fp": "072017",
17 "isdItcCross": {
18 "iamti": 700,
19 "iamts": 0,
20 "iamtc": 0,
21 "samts": 0,
22 "samti": 0,
23 "camti": 700,
24 "camtc": 0,
25 "cess": 200
26 }
27}),
28});
29
30const data = await response.json();
31console.log(data);
No example available.