Delete a Batch Template

delete

/bcws/webresources/v1.0/batchpayments/batchtemplates/{id}

Deletes a batch template from the BRM database.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

200 Response

The batch template was deleted successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to delete a batch template from the BRM database 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/batchpayments/batchtemplates/0.0.0.1+-config-batch_templates-reversal+599456'

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