I'm trying to create a Business Account from Leads (ScreenID: CR301000) via Acumatica (Version: 17.200.0401) REST API in Postman with the action (Create Business Account) in Acumatica, called ConvertLeadToBAccount in the endpoint with the parameters: AccountClass, AccountName, BAccountID.
I tried the following:
{
"entity": {
"LeadID": {
"value": "100005"
}
},
"parameters": {
"AccountClass": {
"value": "BUSINESS"
},
"AccountName": {
"value": "MACRO"
},
"BAccountID": {
"value": "GIMON1"
}
}
}
However, it's not converting the lead into a business account.
This is the Post Request: Post Request in Postman
The LeadID is previously obtained via this Get Request: Get Request via Postman
Unlike other actions we have executed, this one uses parameters, but we cannot find examples with the use of parameters.