As per the document (https://docs.oracle.com/en/cloud/saas/supply-chain-management/21a/fasrp/op-fscmrestapi-resources-11.13.18.05-itemsv2-get.html), we can see the item API (itemsV2) is used to get all items.
https://servername/fscmRestApi/resources/version/itemsV2?q=ItemNumber=KM_ITEM_REST1;OrganizationCode=V1
But, why is it asking for ItemNumber or ItemDescription as mandatory?
We can only get one item if we pass the item number or just can get few items with the below conditions
q=ItemNumber LIKE 'PA0%';OrganizationCode='V1'
q=ItemNumber >= 'PA00001';OrganizationCode='V1'
Please help me to get all the items list using the itemsV2 API.