Get Collections Actions

get

/bcws/webresources/v1.0/collections/actions

Gets all collections actions, including their ID, name, and description.

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 collections actions were 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 a list of collections actions 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/collections/actions'

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": "0.0.0.1+-config-collections-action+823",
            "value": "Inactivate Services of Billinfo",
            "desc": "Inactivate Services of Billinfo",
            "version": null
        },
        {
            "key": "0.0.0.1+-config-collections-action+826",
            "value": "Collect Payment",
            "desc": "Collect Payment",
            "version": null
        },
        {
            "key": "0.0.0.1+-config-collections-action+822",
            "value": "Close Services of Billinfo",
            "desc": "Close Services of Billinfo",
            "version": null
        },
        {
            "key": "0.0.0.1+-config-collections-action+824",
            "value": "Refer to outside agency",
            "desc": "Refer to outside agency",
            "version": null
        },
        {
            "key": "0.0.0.1+-config-collections-action-custom-late_fee+125732",
            "value": "Move to collections",
            "desc": "",
            "version": null
        },
        {
            "key": "0.0.0.1+-config-collections-action+825",
            "value": "Promise to Pay",
            "desc": "Promise to Pay",
            "version": null
        },
        {
            "key": "0.0.0.1+-config-collections-action+821",
            "value": "Writeoff Billinfo",
            "desc": "Writeoff Billinfo",
            "version": null
        }
    ],
    "flags": [],
    "thresholds": [],
    "mapping": []
}
Back to Top