Split into multiple markdown files

This commit is contained in:
2024-04-28 23:38:14 +02:00
parent 81e1f97a27
commit 6f311825c0
4 changed files with 83 additions and 23 deletions

15
mqsc.md Normal file
View File

@@ -0,0 +1,15 @@
## Using the API
```bash
curl --insecure \
-k https://localhost:9443/ibmmq/rest/v2/admin/action/qmgr/QM1/mqsc \
-X POST -u admin:passw0rd -H "ibm-mq-rest-csrf-token: value" \
-H "Content-Type: application/json" \
--data @- << EOF
{
"type": "runCommandJSON",
"command": "define",
"qualifier": "qlocal",
"name": "MSGQ"
}
EOF
```