Refund a Customer Deposit

post

/bcws/webresources/v1.0/depositManagement/depositRefund

Refunds the specified customer deposit.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Money
Type: object
Show Source
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Money
Type: object
Show Source
Back to Top

Response

201 Response

The deposit refund was created successfully, and the ID of the new deposit refund was returned.

500 Response

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

Examples

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

cURL Command

curl -X POST 'http://hostname:port/bcws/webresources/version/depositManagement/depositRefund' -H 'content-type: application/json' -d @refundDeposit.json

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.
  • refundDeposit.json is the JSON file that specifies the deposit to refund.

Example of Request Body

This example shows the contents of the refundDeposit.json file sent as the request body.

{  
  "customerDepositRef": "0.0.0.1+-purchased_deposit+2172776+0",
  "refundAmount": {
    "amount": 10,
    "currency": "INR"
  },
  "notes": "Deposit refund request"
}

Example of Response Body

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

{
    "id": "0.0.0.1+-deposit_refund_request+2645712",
    "href": "http://hostname:port/bcws/webresources/version/depositManagement/depositRefund/0.0.0.1+-deposit_refund_request+2645712"
}
Back to Top