Cancel a Subscriber's Contract

post

/bcws/webresources/v1.0/subscriptions/cancel/contract

Cancels the subscriber's contract that is passed in the request payload.

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 : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Back to Top

Response

200 Response

The subscriber's contract was canceled successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to cancel a subscriber's contract 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/subscriptions/cancel/contract -H 'content-type: application/json' -d @file.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.
  • file.json is the JSON file that specifies the contract to cancel.

Example of Request Body

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

{
   "accountRef": {
      "id":"0.0.0.1+-account+1607269" 
   },
   "subscriberContractRef": {
      "id":"0.0.0.1+-subscriber_contract+1607909"
   },
   "packageRef": {
      "id":"0.0.0.1+-plan+860103"
   }
}

Example of Response Body

If the contract is canceled successfully, the response code 200 is returned with true in the response body.

Back to Top