There’s an endpoint for getting multiple items by id: https://cloud.squidex.io/api/content/[app-name]?ids=[ids]
This endpoint is used to get the items that are added to a reference field. These items can come from multiple schemas, so I cannot use the schema-specific endpoints.
The problem is that I cannot find a way to call this method using the c# client (I also cannot find it in the Swagger docs).
Thanks for your quick reply, but this is the content client for a specific schema right? How would I initialize this client, since I don’t know which schema the items belong to? Something like this: _clientManager.CreateContentsClient<Content<object>, object>(string.Empty);?
Yeah, I can see that that method calls the endpoint that gets items across schemas. But I was confused since it’s part of the ContentsClient class that requires me to provide the entity type, data type and schema prefix.
I’ll try to create a generic client where I use a JObject as the data type, and provide no schema prefix: