How to get full tags from a find operation

I’m using the following tools/find query to get a list of instances:

curl --request POST --url http://ctx-dev01:8042/tools/find --data ‘{“CaseSensitive”:false,“Expand”:true,“Level”:“Instance”,“Query”:{“InstanceNumber”:“1”}}’

And I get a list of all instances numbered ‘1’ as expected. But I only get the headers. I need to get data from some tags. I realize I can used the ID and get the tags - but it would be much simpler if there is an option to the find that indicates returning all (or specified tags) the tags with each instance.

Is this possible? If so can you point me at the documentation that describes it?

No, that’s currently not possible. Right now, when doing a tools/find, you actually only get the data that is stored in the SQL database.

Hello,

That’s clearly a behavior that could be implemented as a third-party plugin:
http://book.orthanc-server.com/developers/creating-plugins.html#creating-plugins

Sébastien-