Get Open Disputes for a Bill

get

/bcws/webresources/v1.0/disputes/bill/{id}

Gets all open disputes for the specified bill.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The list of open disputes was 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 open disputes for a 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/disputes/bill/0.0.0.1+-bill+274419'

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-266347",
      "firstName": "Jill",
      "lastName": "Wilson",
      "effectiveDate": null,
      "createdDate": 1613523331000,
      "arActionType": 11,
      "arActionAmount": -2,
      "arUnallocatedAmount": null,
      "arActionId": "D1-126",
      "arActionRef": {
         "id": "0.0.0.1+-item-dispute+273444",
         "uri": null
      },
      "billUnitName": "Bill Unit(1)",
      "billID": "B1-3442",
      "itemName": "B1-3442,3 Cycle forward",
      "billingStatus": null
   }
]
Back to Top