Hello Community,
I am trying to get a list of all the items with their respective id's under a specific company, stored in business central.
I tried to use the ODATA API in the following way
https://api.businesscentral.dynamics.com/v2.0/{tenantId}/{environmentName}/ODataV4/Company('{companyName}')/Items
were Items is a Odata service expose through the business central web service configuration targeting object 32

The service works, but I am not able to see the internal ID.
I also tried to switch to the business central v2.0 API and try to get the items that I need by doing the following:
https://api.businesscentral.dynamics.com/v2.0/{tenantId}/{environmentName}/api/v2.0/companies({companyId})/Items
but this seems not to be a valid operation because I receive the following error

How do I get a list of Company Items with their respective Id's?