Get A/R Actions for a Bill Item

get

/bcws/webresources/v1.0/items/{id}/ar-actions

Gets the list of A/R actions associated with the specified bill item.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The A/R actions were returned successfully.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : arActionsList
Type: object
Show Source
Nested Schema : ResourceRef
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get the A/R actions for a bill item 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/items/0.0.0.1+-item-cycle_forward+211929/ar-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,
        "accountNumber": "0.0.0.1-81329",
        "firstName": "Mary",
        "lastName": "Wallis",
        "effectiveDate": null,
        "createdDate": 1605173177000,
        "arActionType": 3,
        "arActionAmount": -1,
        "arUnallocatedAmount": null,
        "arActionId": "A1-156",
        "arActionRef": {
            "id": "0.0.0.1+-item-adjustment+208776",
            "uri": "http://hostname:port/bcws/webresources/v1.0/items/0.0.0.1+-item-adjustment+208776?type=%2Fitem%2Fadjustment"
        },
        "billUnitName": null,
        "billID": null,
        "itemName": null,
        "billingStatus": null
    }
]
Back to Top