Delete a Deposit Specification

delete

/bcws/webresources/v1.0/depositManagement/depositSpec/{id}

Deletes the deposit specification with the specified ID.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

200 Response

The deposit specification profile was deleted successfully.

500 Response

An error occurred. An exception has been raised.
Back to Top

Examples

This example shows how to get delete a deposit specification by submitting a DELETE 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/depositManagement/depositSpec/0.0.0.1+-deposit_specification+2641457'

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

This example shows the contents of the response body in JSON format.

{
    "id": "0.0.0.1+-deposit_specification+2641457",
    "href": "http://hostname:port/bcws/webresources/version/depositManagement/depositSpec/0.0.0.1+-deposit_specification+2641457" 
}
Back to Top