Transition Account to New Bundle

put

/bcws/webresources/v1.0/subscriptions/account/{id}/bundle/transition

Transitions the specified account from one bundle to a different bundle. The old bundle is canceled and the new one is purchased.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
Show Source
Nested Schema : comments
Type: array
The list of comments associated with the note.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Comments
Type: object
The list of comments associated with the note.
Show Source
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
Show Source
Nested Schema : comments
Type: array
The list of comments associated with the note.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Comments
Type: object
The list of comments associated with the note.
Show Source
Back to Top

Response

200 Response

The bundle transition completed successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to transition an account from one a bundle to another by submitting a PUT request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X PUT http://hostname:port/bcws/webresources/v1.0/subscriptions/account/0.0.0.1+-account+8862839/bundle/transition -H 'content-type: application/json' -d @transitionBundle.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.
  • transitionBundle.json is the JSON file that specifies the transition details.

Example of Request Body

This shows example contents for the transitionBundle.json file sent as the request body.

{
   "toBundle": "0.0.0.1+-deal+8860917",
   "fromBundle": "0.0.0.1+-deal+8862965",
   "transitionType": "1"
}

Example of Response Body

If successful, the response code 200 is returned with true in the response body.

Back to Top