Get Transition Types

get

/bcws/webresources/v1.0/subscriptions/transitiontypes

Gets the list of transition types.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The list of transition types was returned successfully.
Body ()
Root Schema : configurations
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : flags
Type: array
A flag.
Show Source
Nested Schema : keyvals
Type: array
A set of key-value pairs.
Show Source
Nested Schema : mapping
Type: array
A mapping.
Show Source
Nested Schema : thresholds
Type: array
A threshold. The minimum required parameters are: key and value.
Show Source
Nested Schema : Flags
Type: object
A flag.
Show Source
Nested Schema : Keyvals
Type: object
A set of key-value pairs.
Show Source
Nested Schema : Mapping
Type: object
A mapping.
Show Source
Nested Schema : map
Type: array
A map.
Show Source
Nested Schema : Map
Type: object
A map.
Show Source
Nested Schema : Thresholds
Type: object
A threshold. The minimum required parameters are: key and value.
Show Source

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get the transition types by submitting a GET request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X GET 'http://hostname:port/bcws/webresources/version/subscriptions/transitiontypes'

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

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

{
    "extension": null,
    "keyvals": [
        {
            "key": "1",
            "value": "Upgrade",
            "desc": "Add services and a bundle.",
            "version": "1.0"
        },
        {
            "key": "2",
            "value": "Downgrade",
            "desc": "Downgrade to a package that is less expensive and has fewer features.",
            "version": "1.0"
        },
    ],
    "flags": [],
    "thresholds": [],
    "mapping": []
}
Back to Top