Change the Validity of a Noncurrency Resource

post

/bcws/webresources/v1.0/billunits/balancegroups/validity/{id}

Changes the validity period for a noncurrency resource.

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

201 Response

The validity was changed successfully.

500 Response

An internal server error occurred.
Back to Top

Examples

This example shows how to change the validity date for a noncurrency resource 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/v1.0/billunits/balancegroups/validity/1000095' -H 'content-type: application/json' -d @validity.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.
  • validity.json is the JSON file that specifies the new validity date for the bill unit.

Example of Request Body

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

{
    "balanceGroupId": "0.0.0.1+-balance_group+126704",
    "elementId": 4,
    "validTo": "2021-12-30T18:30:00.000Z"
}

Example of Response Body

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

Back to Top