Get A/R Actions for a Bill

get

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

Gets the A/R actions for the specified bill ID.

Request

Path Parameters
Query 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 specified bill 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/bills/0.0.0.1+-bill+200506/ar-actions'
  • 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": "Nancy",
        "lastName": "Miller",
        "effectiveDate": 1605173177000,
        "createdDate": 1605173177000,
        "arActionType": 3,
        "arActionAmount": -1,
        "arUnallocatedAmount": null,
        "arActionId": "A1-156",
        "arActionRef": {
            "id": "0.0.0.1+-item-adjustment+208776",
            "uri": null
        },
        "billUnitName": null,
        "billID": null,
        "itemName": null,
        "billingStatus": null
    },
    {
        "extension": null,
        "accountNumber": "0.0.0.1-81329",
        "firstName": "Nancy",
        "lastName": "Miller",
        "effectiveDate": 1611836594000,
        "createdDate": 1611836594000,
        "arActionType": 3,
        "arActionAmount": -2.5,
        "arUnallocatedAmount": null,
        "arActionId": "A1-165",
        "arActionRef": {
            "id": "0.0.0.1+-item-adjustment+262194",
            "uri": null
        },
        "billUnitName": null,
        "billID": null,
        "itemName": null,
        "billingStatus": null
    }
]
Back to Top