Delete a Queue Browser

delete

/queueBrowsers/{browserName}

Queue Browser with name browserName is closed and deleted.

Request

Path Parameters
Back to Top

Response

204 Response

Queue Browser closed and deleted.

404 Response

Error Codes

  • queueBrowserNotFound:The requested queue browser does not exist.

500 Response

Error Codes

  • operationFailed:A low-level exception occurred in attempting to delete the queue browser.
Back to Top

Examples

cURL Command

cookie=/tmp/messaging-cookie
curl -s -u $USER:$PASS -c $cookie -b $cookie \
     -H "X-OC-ID-TOKEN-STATUS: disabled" \
     -X DELETE "https://messaging.us2.oraclecloud.com/myService-myTenant/api/v1/queueBrowsers/myFirstBrowser"

There is no request body to submit with the HTTP request and there is no response body.

Back to Top