Clear Current Queue

post

/rest/v19/collabOperationQueues/{bsId}/actions/clearCurrentQueue

Use this endpoint to clear the collaborative operation queue for the specified transaction. This will cancel every operation that is executing or queued at the time that the request is processed.

Request

Path Parameters
Back to Top

Response

204 Response

Collab operation queue cleared successfully for a particular bsId.
Back to Top

Examples

The following example shows how to clear the collaborative operation queue for the specified transaction by submitting a POST request to the REST resource using cURL. This will cancel every operation that is executing or queued at the time that the request is processed. For more information about cURL, see Use cURL.

curl -X POST -H "Authorization: Bearer <token>" -H "Accept: application/json"
https://sitename.oracle.com/rest/v19/collabOperationQueues/30221276251/actions/clearCurrentQueue

Success Response

204 - No Content

Error Responses

400 - Collaborative quote editing is not enabled for process

403 - User with restricted access (Sales agent etc)

404 - Invalid bsId provided in the endpoint

Back to Top