IBM MQ tracing API - GET a queue
This API is deprecated. Use the Settings API instead. Look for the following schemas:
- IBM MQ IMS bridges (
builtin:ibmmq.ims-bridges
) - IBM MQ queue sharing groups (
builtin:ibmmq.queue-sharing-group
) - IBM MQ queue managers (
builtin:ibmmq.queue-managers
)
Gets the properties of the specified IBM IMS entry queue.
GET | Managed | https://{your-domain}/e/{your-environment-id}/api/config/v1/service/ibmMQTracing/imsEntryQueue/{id} |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/service/ibmMQTracing/imsEntryQueue/{id} | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/service/ibmMQTracing/imsEntryQueue/{id} |
Authentication
To execute this request, you need an access token with Read configuration (ReadConfig
) scope. To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
id | string | The ID of the required IBM IMS entry queue. | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Ibm | Success |
Response body objects
The IbmMQImsEntryQueue
object
Ibm MQ queue which is an entrypoint to IMS.
Element | Type | Description |
---|---|---|
id | string | The ID of the IMS entry queue. |
queueManagerName | string | The name of the queue manager. |
queueName | string | The name of the queue. |
Response body JSON model
{
"queueManagerName": "MyQueueManagerName",
"queueName": "MyQueueName"
}