Hi everyone,
I have a question about whether the following is possible.
We’re working on an integration between M-Files and another app using the REST API. Everything works fine until we hit a limitation: the app that calls M-Files can’t make nested calls. Because of that, I can’t do the usual call to /objects/(type)/(objectid)/(version)/properties/(id) like I normally would in these cases.
Is there any way to request batches of objects and include specific properties in the response?
I’ve already tried the following endpoints:
Properties of multiple objects: /objects/properties;0/5/6;0/112/latest;136/2/3 — this is the closest I’ve gotten, but when I call too many at once, I hit the URI length limit, and I haven’t been able to make it work with POST.
View contents: /views/(path)/items — it gives me what I need, but it only returns the basic properties.
Does anyone know if there’s a way to get all of this in one call, or to specify only the properties you need in the request?