Delete a Deferred Action

delete

/bcws/webresources/v1.0/deferredactions/{id}

Deletes the specified deferred action.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

204 Response

The deferred action was deleted successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to delete a deferred action by submitting a POST request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X DELETE 'http://hostname:port/bcws/webresources/version/deferredactions/0.0.0.1+-schedule+255194'

where:

  • hostname is the URL for the Billing Care REST server.
  • port is the port for the Billing Care REST server.
  • version is the version of the API you're using, such as v1.0.

Example of Response Body

If successful, the response code 204 is returned with no response body.

Back to Top