SEMP equivallent of 'show queue<queue-name> message-vpn<vpn-name> flows'

I need help to convert this command to ‘show queue message-vpn flows’ SEMP format for using solace api.

The SEMPv2 call for this seems to be SEMP API Reference

@jyoti See if this help you SEMP API Reference

These rest api’s are only available for monitor,action and config.
But in my case i want to get all queue’s stats available in message VPN.
For this solace CLI is ‘show queue message-vpn flows’

I want something like this
curl <url> -u admin:admin -d "<rpc> <show> <queue><name>*</name> <message-vpn>test-name> <flows/> </message-vpn> </show> </rpc>"

The statistics are available in the “monitor” section of the API. To get statistics about a flow, you can send semp request https://broker-ip/SEMPv2/monitor/{msgVpnName}/queues/{queueName}/txFlows/{flowId}

Items in the response will include:

activationTmie
activityState
bindTime
maxUnackedMsgsExceededMsgCount
redeliveredMsgCount
redeliveryRequestCount
selectorExaminedMsgCount

etc.

Please see:

SEMP API Reference, scroll down to the Code 200 section and click on “MsgVpnQueueTxFlowResponse” and then “MsgVpnQueueTxFlow” for more information about what is returned.