Write Off an Item

post

/bcws/webresources/v1.0/writeoffs/item/{id}

Writes off the item that matches the specified ID.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : ResourceRef
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 : ResourceRef
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

Supported Media Types

200 Response

The item was written off successfully.
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : ResourceRef
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

500 Response

An internal server error occurred.
Back to Top

Examples

These examples show how to write off a bill item 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/bcws/webresources/version/writeoffs/item/0.0.0.1+-item-cycle_forward+265800' -H 'content-type: application/json' -d @writeOffItem.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.
  • writeOffItem.json is the JSON file that specifies the write-off details.

Example of Request Body

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

{
   "writeoffTax": false,
   "notes": {
      "amount": -10.97,
      "domainId": 45,
      "accountId": "0.0.0.1+-account+263249",
      "billUnitId": "0.0.0.1+-billinfo+264785",
      "reasonId": "2",
      "status": 101,
      "comments": [
         {
            "comment": "Writing off item."
         }
      ]
   }
}

Example of Response Body

This example shows the contents of the response body in JSON format.

{
   "extension": null,
   "actionAffectsRef": {
     "id": "0.0.0.1+-item-writeoff+254571",
     "uri": null
   },
   "effective": null,
   "writeoffTax": false,
   "inactivateAccount": false,
   "notes": null
}
Back to Top