Split into multiple markdown files
This commit is contained in:
17
create-qlocal.md
Normal file
17
create-qlocal.md
Normal file
@@ -0,0 +1,17 @@
|
||||
## POST /ibmmq/rest/v1/admin/qmgr/{qmgrName}/queue
|
||||
```bash
|
||||
# New queue from scratch
|
||||
curl --insecure --header 'Content-Type: application/json' \
|
||||
-X POST --header 'Accept: application/json' \
|
||||
-d '{ \
|
||||
"name": "RLN.TEST.QUEUE", \
|
||||
"type": "QLOCAL" \
|
||||
}' \
|
||||
'https://localhost:9443/ibmmq/rest/v1/admin/qmgr/QM1/queue'
|
||||
|
||||
# New queue like DEV.QUEUE.1
|
||||
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{ \
|
||||
"name": "RLN.TEST.QUEUE", \
|
||||
"type": "QLOCAL" \
|
||||
}' 'https://localhost:9443/ibmmq/rest/v1/admin/qmgr/QM1/queue?like=DEV.QUEUE.1'
|
||||
```
|
||||
Reference in New Issue
Block a user