Create a Corrective Bill

post

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

Creates a corrective bill for the bill that matches the specified ID.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
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
Request Body - application/xml ()
Root Schema : schema
Type: object
Show Source
Nested Schema : extension
Type: object
The extended attributes.
Nested Schema : Notes
Type: object
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
Back to Top

Response

200 Response

The corrective bill was created successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to create a corrective bill for a specified bill by submitting a POST request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X POST 'http://hostname:port/bcws/webresources/version/bills/correctivebill/0.0.0.1+-bill+257531' -H 'content-type: application/json' -d @corrective.json

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.
  • corrective.json is the JSON file that provides information about the corrective bill to create.

Example of Request Body

This example shows the contents of the corrective.json file sent as the request body.

{
   "invoiceFormat": "1",
   "invoiceType": "1",
   "notes": {
      "domainId": 43,
      "accountId": "0.0.0.1+-account+149926",
      "billUnitId": "0.0.0.1+-billinfo+148390",
      "reasonId": "2",
      "status": 101,
      "comments": [
         {
            "comment": "Sample comment."
         }
      ]
   }
}

Example of Response Body

If successful, the response code 201 is returned with no response body.

Back to Top