Create a Customer Deposit Payment

post

/bcws/webresources/v1.0/depositManagement/depositPayment

Creates a customer deposit payment.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - */* ()
Root Schema : schema
Type: object
Show Source
Nested Schema : payments
Type: array
Show Source
Nested Schema : DepositPayment
Type: object
Show Source
Nested Schema : Discriminator: @class
Type: object
Show Source
Nested Schema : Money
Type: object
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Back to Top

Response

201 Response

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

500 Response

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

Examples

This example shows how to create a payment for 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/depositPayment' -H 'content-type: application/json' -d @depositPayment.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.
  • depositPayment.json is the JSON file that specifies the deposit payment to create.

Example of Request Body

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

{
        "customerRef": "0.0.0.1+-account+2243823",
        "customerDepositRef": "0.0.0.1+-purchased_deposit+2519408",
        "notes":"abc",
        "payments": [
         {
            "paymentMethodType": "PREPAYMENT",
            "paymentRef": "0.0.0.1+-item-payment+2519378",
            "status": "COMPLETED",
            "paymentAmount": {
                "amount": 200,
                "currency": "EUR"
            }
         },
         {
            "paymentMethodType": "PREPAYMENT",
            "paymentRef": "0.0.0.1+-item-payment+2521840",
            "status": "COMPLETED",
            "paymentAmount": {
                "amount": 1300,
                "currency": "EUR"
            }
         },
         {
            "paymentMethodType": "CASH",
            "paymentRef": "R-1-2112",
            "status": "PENDING",
            "paymentAmount": {
                "amount": 1000,
                "currency": "EUR"
            }
         }
    	  ]
}

Example of Response Body

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

{
    "id": "0.0.0.1+-purchased_deposit+2519408",
    "href": "http://hostname:port/bcws/webresources/version/depositManagement/depositPayment/0.0.0.1+-purchased_deposit+2519408"
}
Back to Top