20 Apr 2026
07:06 PM
- last edited on
21 Apr 2026
07:40 AM
by
MaciejNeumann
Basically as described.
Is it possible?
We can get their ids by using
fetch `dt.entity.extensions:configuration`
but not their contents.
It would be immensely quicker to do it via DQL (and safer!), instead of having to resort to API calls.
Thank you.
20 Apr 2026 08:31 PM
Hi,
As far as I know, not via DQL alone.
You can query the extension configuration entities/IDs in DQL, but the actual monitoring configuration content is exposed through the Extensions 2.0 API, not directly through DQL.
In practice, the supported way is to use the configuration ID you get from fetch dt.entity.extensions:configuration and then call:
GET /api/v2/extensions/{extensionName}/...
here documentation:
Extensions 2.0 API
That endpoint returns the configuration payload in the value field.
So today the answer seems to be: IDs in DQL yes, full contents in DQL no.
21 Apr 2026 02:15 PM
Hello, I understand.
Thanks for confirming.
Featured Posts