Skip to main content
Solved

How to pass parameter to Generic Inquiry via odata

  • April 28, 2026
  • 2 replies
  • 27 views

I have created Generic Inquiry AccountBalances.

Created date parameter Date

added condition

enabled odata 

i see that url in $metadata. Without param that odata endpoint works fine.

 

Found documentation that explained how to set param

https://help-2025r1.acumatica.com/(W(14))/Wiki/ShowWiki.aspx?pageid=7990b4d9-1f40-4654-9494-7b2f6abfd023

 

But when I trying to fetch data via postman

/Acumatica/odata/SomeCompany/AccountBalances_WithParameters(Date=2025-01-01)?$format=json

or 

/Acumatica/odata/SomeCompany/AccountBalances_WithParameters(Date=@p1)?$format=json&p1=2025-01-01

 

it returns 404

 

How I can correctly pass that Date param ?

Best answer by kpopova

You need to use Acumatica/t/SomeCompany/api/odata/gi/ in the url instead of Acumatica/odata/SomeCompany

2 replies

kpopova
Acumatica Employee
Forum|alt.badge.img+2
  • Acumatica Employee
  • Answer
  • April 28, 2026

You need to use Acumatica/t/SomeCompany/api/odata/gi/ in the url instead of Acumatica/odata/SomeCompany


  • Author
  • Freshman I
  • April 28, 2026

Thanks!