I am trying to create a selector. I can 't find here https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/software-broker/config/index.html#/ how could I add a selector to a queue. I tried using the following endpoint
http://localhost:8080/SEMP/v2/config/msgVpns/default/queues/QUEUENAME
with the request body
{ "selector": "platforms LIKE '%standvirtual%'"}
But got this error
{ "meta": { "error": { "code": 11, "description": "Unexpected Parameter 'selector'", "status": "INVALID_PARAMETER" }, "request": { "method": "PATCH", "uri": "http://localhost:8080/SEMP/v2/config/msgVpns/default/queues/StandVirtual" }, "responseCode": 400 }}
It does make sense as there is no selector field in the documentation but still I tried as it was suggested for my by chatgpt (I now shame on me).
How can I create a selector using JEMP?