Get a Corrective Bill

get

/bcws/webresources/v1.0/bills/correctivebill/{id}

Gets details about a corrective bill that matches the specified ID.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The corrective bill was returned successfully.
Body ()
Root Schema : correctiveBillTrail
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
Show Source
Nested Schema : originalBill
Type: object
Information about an original bill.
Show Source
Nested Schema : comments
Type: array
The list of comments associated with the note.
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Comments
Type: object
The list of comments associated with the note.
Show Source
Nested Schema : extension
Type: object
The extended attributes.

400 Response

The request isn't valid.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to get the corrective bill 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/correctivebill/0.0.0.1+-bill+257531'

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,
   "invoiceFormat": 1,
   "invoiceType": 1,
   "adjusted": 0,
   "billNo": "CB1-1",
   "creationDate": 1612339502000,
   "disputed": 0,
   "currentTotal": 3,
   "arActionsAmtExcludingPayments": 0.00,
   "due": 52.95,
   "totalDue": 52.95,
   "subordsTotal": 49.95,
   "receivedForBill": 0,
   "dueDate": 1614931200000,
   "originalBill": {
      "extension": null,
      "invoiceFormat": null,
      "invoiceType": null,
      "adjusted": 0,
      "billNo": "B1-747",
      "creationDate": 1612290828000,
      "disputed": 0,
      "currentTotal": 3,
      "arActionsAmtExcludingPayments": 0.00,
      "due": 52.95,
      "totalDue": 52.95,
      "subordsTotal": 49.95,
      "receivedForBill": 0,
      "dueDate": 1613721600000,
      "originalBill": {
         "extension": null,
         "invoiceFormat": null,
         "invoiceType": null,
         "adjusted": null,
         "billNo": null,
         "creationDate": null,
         "disputed": null,
         "currentTotal": null,
         "arActionsAmtExcludingPayments": null,
         "due": null,
         "totalDue": null,
         "subordsTotal": null,
         "receivedForBill": null,
         "dueDate": null,
         "originalBill": null
      }
   },
   "notes":  {
      "extension": null,
      "id": "0.0.0.1+-note+263310",
      "accountId": "0.0.0.1+-account+149926",
      "amount": 0,
      "billUnitId": "0.0.0.1+-billinfo+148390",
      "billId": null,
      "closedDate": 1612339502000,
      "count": 1,
      "effectiveDate": 1612339502000,
      "eventId": "0.0.0.0++0",
      "header": "",
      "itemId": "0.0.0.0++0",
      "subType": 1001,
      "type": 1000,
      "domainId": 43,
      "reasonId": 2,
      "serviceId": "0.0.0.0++0",
      "status": 101,
      "comments": [
         {
            "csrLoginId": null,
            "csrFirstName": null,
            "csrLastName": null,
            "csrAccountId": null,
            "externalUser": "weblogic",
            "comment": "",
            "trackingId": "",
            "entryDate": 1612339502000
         }
      ]
   }
}
Back to Top