Skip to main content
Solved

StockItems endpoint

  • April 29, 2024
  • 2 replies
  • 59 views

Hi just wanted to figure out on how to do filters on the StockItem endpoint? I wanted to filter to get Inactive items.

 

What I’ve tried so far is adding this params

ItemStatus=Inactive

conditions = “ItemStatus eq Inactive”

Best answer by Django

Should be something like this:

$filter=ItemStatus eq ‘Inactive’

2 replies

Forum|alt.badge.img+7
  • Captain II
  • Answer
  • April 29, 2024

Should be something like this:

$filter=ItemStatus eq ‘Inactive’


  • Author
  • Freshman I
  • April 29, 2024

Should be something like this:

$filter=ItemStatus eq ‘Inactive’

Thank you!