Skip to main content
Solved

Bill amount stays at 0

  • February 13, 2025
  • 2 replies
  • 28 views

I’m using version 2024 R2:

In Postman I’m trying to create a simple bill that looks like:

URL: https://***/entity/Default/24.200.001/bill with body:

{
  "Type": {
    "value": "Bill"
  },
  "Vendor": {
    "value": "MIC001"
  },
  "VendorRef": {
    "value": "12FF"
  },
  "Amount": {
    "value": 100.00
  }
}
I do get a 200 OK response but the amount is zero, I’ve tried entering more fields but the results are the same. What am I doing wrong?

Best answer by Dmitrii Naumov

Hi ​@muller61 , 

You cannot directly set the Bill amount. You need to specify the bill details and the sum of the details will be set as the bill amount.

2 replies

Dmitrii Naumov
Acumatica Moderator
Forum|alt.badge.img+7
  • Acumatica Moderator
  • Answer
  • February 13, 2025

Hi ​@muller61 , 

You cannot directly set the Bill amount. You need to specify the bill details and the sum of the details will be set as the bill amount.


  • Author
  • Freshman I
  • February 13, 2025

@Dmitrii Naumov 
Thank you!