We are using V2 version of API. I am trying to pass below body:
[
{
"Journal_Template_Name": "GENERAL",
"Journal_Batch_Name": "DEFAULT",
"Account_Type": "G/L Account",
"Account_No": "11110",
"Amount": -2010
},
{
"Journal_Template_Name": "GENERAL",
"Journal_Batch_Name": "DEFAULT",
"Account_Type": "Customer",
"Account_No": "1000000",
"Amount": 2010
}
]
For single line its working properly below is the json body:
{
"Journal_Template_Name": "GENERAL",
"Journal_Batch_Name": "DEFAULT",
"Account_Type": "Customer",
"Account_No": "1000000",
"Amount": 2010
}